17 lines
595 B
C#
17 lines
595 B
C#
using BeautySalonContracts.BindingModels;
|
|
using BeautySalonContracts.SearchModels;
|
|
using BeautySalonContracts.ViewModels;
|
|
|
|
namespace BeautySalonContracts.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);
|
|
}
|
|
}
|