42 lines
925 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.StorageContracts;
using BeautySalonContracts.ViewModels;
namespace BeautySalonDatabaseImplement.Implements
{
internal class ClientStorage : IClientStorage
{
public ClientViewModel Deleted(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();
}
}
}