17 lines
599 B
C#
17 lines
599 B
C#
using BeautySaloonContracts.BindingModels;
|
|
using BeautySaloonContracts.SearchModels;
|
|
using BeautySaloonContracts.ViewModels;
|
|
|
|
namespace BeautySaloonContracts.StoragesContracts
|
|
{
|
|
public interface IServiceStorage
|
|
{
|
|
List<ServiceViewModel> GetFullList();
|
|
List<ServiceViewModel> GetFilteredList(ServiceSearchModel model);
|
|
ServiceViewModel? GetElement(ServiceSearchModel model);
|
|
ServiceViewModel? Insert(ServiceBindingModel model);
|
|
ServiceViewModel? Update(ServiceBindingModel model);
|
|
ServiceViewModel? Delete(ServiceBindingModel model);
|
|
}
|
|
}
|