15 lines
500 B
C#
15 lines
500 B
C#
|
using FurnitureContracts.BindingModels;
|
|||
|
using FurnitureContracts.SearchModels;
|
|||
|
using FurnitureContracts.ViewModel;
|
|||
|
|
|||
|
namespace FurnitureContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IManagerLogic
|
|||
|
{
|
|||
|
List<ManagerViewModel>? ReadList(ManagerSearchModel? model);
|
|||
|
ManagerViewModel? ReadElement(ManagerSearchModel model);
|
|||
|
bool Create(ManagerBindingModel model);
|
|||
|
bool Update(ManagerBindingModel model);
|
|||
|
bool Delete(ManagerBindingModel model);
|
|||
|
}
|
|||
|
}
|