10 lines
193 B
C#
10 lines
193 B
C#
using FishFactoryContracts.BindingModels;
|
|
|
|
namespace FishFactoryContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IBackUpLogic
|
|
{
|
|
void CreateBackUp(BackUpSaveBindingModel model);
|
|
}
|
|
}
|