PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentBusinessLogic/BusinessLogic/SalaryLogic.cs

32 lines
871 B
C#
Raw Normal View History

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<SalaryViewModel> GetSalaries(SalarySearchModel model)
{
throw new NotImplementedException();
}
public SalaryViewModel? GetSalaryById(int id)
{
throw new NotImplementedException();
}
}
}