2024-05-12 19:24:51 +04:00
|
|
|
|
using FishFactoryContracts.BindingModels;
|
|
|
|
|
using FishFactoryContracts.SearchModels;
|
|
|
|
|
using FishFactoryContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace FishFactoryContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-05-13 22:15:56 +04:00
|
|
|
|
public interface IImplementerLogic
|
2024-05-12 19:24:51 +04:00
|
|
|
|
{
|
|
|
|
|
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
|
|
|
|
|
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
|
|
|
|
|
bool Create(ImplementerBindingModel model);
|
|
|
|
|
bool Update(ImplementerBindingModel model);
|
|
|
|
|
bool Delete(ImplementerBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|