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 GetFilteredList(ClientSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public ClientViewModel Insert(ClientBindingModel model) { throw new NotImplementedException(); } public ClientViewModel Update(ClientBindingModel model) { throw new NotImplementedException(); } } }