using EmployeeManagmentContracts.BindingModels; using EmployeeManagmentContracts.BusinessLogicContracts; using EmployeeManagmentContracts.SearchModels; using EmployeeManagmentContracts.StoragesContracts; using EmployeeManagmentContracts.ViewModels; using EmployeeManagmentDataBaseImplement.Implements; using Microsoft.Extensions.Logging; namespace EmployeeManagmentBusinessLogic.BusinessLogic { public class SalaryLogic : ISalaryLogic { private readonly ILogger _logger; private readonly ISalaryStorage _salaryStorage; public SalaryLogic(ILogger logger, ISalaryStorage salaryStorage) { _logger = logger; _salaryStorage = salaryStorage; } public void Delete(int id) { throw new NotImplementedException(); } public PhisicalPersonViewModel? GetElement(int id) { throw new NotImplementedException(); } public List GetFilteredList(PhisicalPersonSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public void Insert(PhisicalPersonViewModel model) { throw new NotImplementedException(); } public void Update(PhisicalPersonViewModel model) { throw new NotImplementedException(); } } }