using BeautySalonContracts.BindingModels; using BeautySalonContracts.SearchModels; using BeautySalonContracts.StorageContracts; using BeautySalonContracts.ViewModels; namespace BeautySalonDatabaseImplement.Implements { internal class ProcedureStorage : IProcedureStorage { public ProcedureViewModel Delete(ProcedureBindingModel model) { throw new NotImplementedException(); } public ProcedureViewModel GetElement(ProcedureSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(ProcedureSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public ProcedureViewModel Insert(ProcedureBindingModel model) { throw new NotImplementedException(); } public ProcedureViewModel Update(ProcedureBindingModel model) { throw new NotImplementedException(); } } }