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

41 lines
1001 B
C#

using BeautySalonContracts.BindingModels;
using BeautySalonContracts.SearchModels;
using BeautySalonContracts.StorageContracts;
using BeautySalonContracts.ViewModels;
namespace BeautySalonDatabaseImplement.Implements
{
internal class DistributionStorage : IDistributionStorage
{
public DistributionViewModel Delete(DistributionBindingModel model)
{
throw new NotImplementedException();
}
public DistributionViewModel GetElement(DistributionSearchModel model)
{
throw new NotImplementedException();
}
public List<DistributionViewModel> GetFilteredList(DistributionSearchModel model)
{
throw new NotImplementedException();
}
public List<DistributionViewModel> GetFullList()
{
throw new NotImplementedException();
}
public DistributionViewModel Insert(DistributionBindingModel model)
{
throw new NotImplementedException();
}
public DistributionViewModel Update(DistributionBindingModel model)
{
throw new NotImplementedException();
}
}
}