using BeautySalonContracts.BindingModels; using BeautySalonContracts.StorageContracts; using BeautySalonContracts.ViewModels; namespace BeautySalonDatabaseImplement.Implements { internal class EmployeeStorage : IEmployeeStorage { public EmployeeViewModel Deleted(EmployeeBindingModel model) { throw new NotImplementedException(); } public EmployeeViewModel GetElement(EmployeeBindingModel model) { throw new NotImplementedException(); } public List GetFilteredList(EmployeeBindingModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public EmployeeViewModel Insert(EmployeeBindingModel model) { throw new NotImplementedException(); } public EmployeeViewModel Update(EmployeeBindingModel model) { throw new NotImplementedException(); } } }