SUBD_Labs/BeauySalonContracts/StoragesContracts/IMasterStorage.cs

19 lines
657 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.StoragesContracts
{
public interface IMasterStorage
{
List<MasterViewModel> GetFullList();
List<MasterViewModel> GetFilteredList(MasterSearchModel model);
MasterViewModel? GetElement(MasterSearchModel model);
MasterViewModel? Insert(MasterBindingModel model);
MasterViewModel? Update(MasterBindingModel model);
MasterViewModel? 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
}
}