using BeautySalonContracts.BindingModels; using BeautySalonContracts.StorageContracts; using BeautySalonContracts.ViewModels; namespace BeautySalonDatabaseImplement.Implements { internal class ClientStorage : IClientStorage { public ClientViewModel Deleted(ClientBindingModel model) { throw new NotImplementedException(); } public ClientViewModel GetElement(ClientBindingModel model) { throw new NotImplementedException(); } public List GetFilteredList(ClientBindingModel 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(); } } }