maksim
1ddd362ab7
В некоторых файлах, основанных на интерфейсах, стоят заглушки. Создана несколько экранов, которые также являются заглушками.
32 lines
871 B
C#
32 lines
871 B
C#
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();
|
|
}
|
|
}
|
|
}
|