2024-07-25 18:44:30 +04:00

42 lines
924 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.StorageContracts;
using BeautySalonContracts.ViewModels;
namespace BeautySalonDatabaseImplement.Implements
{
internal class ClientStorage : IClientStorage
{
public ClientViewModel Delete(ClientBindingModel model)
{
throw new NotImplementedException();
}
public ClientViewModel GetElement(ClientSearchModel model)
{
throw new NotImplementedException();
}
public List<ClientViewModel> GetFilteredList(ClientSearchModel model)
{
throw new NotImplementedException();
}
public List<ClientViewModel> GetFullList()
{
throw new NotImplementedException();
}
public ClientViewModel Insert(ClientBindingModel model)
{
throw new NotImplementedException();
}
public ClientViewModel Update(ClientBindingModel model)
{
throw new NotImplementedException();
}
}
}