using EmployeeManagmentContracts.BindingModels; using EmployeeManagmentContracts.BusinessLogicContracts; using EmployeeManagmentContracts.SearchModels; using EmployeeManagmentContracts.StoragesContracts; using EmployeeManagmentContracts.ViewModels; namespace EmployeeManagmentBusinessLogic.BusinessLogic { public class SalaryLogic : ISalaryLogic { public void CreateOrUpdate(SalaryBindingModel model) { throw new NotImplementedException(); } public void Delete(int id) { throw new NotImplementedException(); } public List GetSalaries(SalarySearchModel model) { throw new NotImplementedException(); } public SalaryViewModel? GetSalaryById(int id) { throw new NotImplementedException(); } } }