using EmployeeManagmentContracts.SearchModels; using EmployeeManagmentContracts.StoragesContracts; using EmployeeManagmentContracts.ViewModels; using EmployeeManagmentDataBaseImplement.Models; namespace EmployeeManagmentDataBaseImplement.Implements { public class EmployeeStorage : IEmployeeStorage { public void Delete(int id) { throw new NotImplementedException(); } public EmployeeViewModel? GetElement(int id) { throw new NotImplementedException(); } public List GetFilteredList(EmployeeSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public void Insert(EmployeeViewModel model) { throw new NotImplementedException(); } public void Update(EmployeeViewModel model) { throw new NotImplementedException(); } } }