2024-07-24 13:22:05 +04:00
|
|
|
|
using BeautySalonContracts.BindingModels;
|
2024-07-24 21:04:21 +03:00
|
|
|
|
using BeautySalonContracts.SearchModels;
|
2024-07-24 13:22:05 +04:00
|
|
|
|
using BeautySalonContracts.ViewModels;
|
2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
namespace BeautySalonContracts.StorageContracts
|
|
|
|
|
{
|
2024-07-24 13:22:05 +04:00
|
|
|
|
public interface IClientStorage
|
2024-07-23 21:32:13 +04:00
|
|
|
|
{
|
2024-07-24 13:22:05 +04:00
|
|
|
|
List<ClientViewModel> GetFullList();
|
2024-07-24 21:04:21 +03:00
|
|
|
|
List<ClientViewModel> GetFilteredList(ClientSearchModel model);
|
|
|
|
|
ClientViewModel GetElement(ClientSearchModel model);
|
2024-07-24 13:22:05 +04:00
|
|
|
|
ClientViewModel Insert(ClientBindingModel model);
|
|
|
|
|
ClientViewModel Update(ClientBindingModel model);
|
2024-07-25 18:44:30 +04:00
|
|
|
|
ClientViewModel Delete(ClientBindingModel model);
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|
|
|
|
|
}
|