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