18 lines
576 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.ViewModels;
namespace BeautySalonContracts.BusinessLogicsContracts
{
public interface IMasterLogic
{
List<MasterViewModel>? ReadList(MasterSearchModel? model);
MasterViewModel? ReadElement(MasterSearchModel model);
bool Create(MasterBindingModel model);
bool Update(MasterBindingModel model);
bool Delete(MasterBindingModel model);
2023-05-17 03:35:13 +04:00
string TestInsertList(int v);
string TestReadList(int v);
2023-05-13 13:37:59 +04:00
}
}