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 VacationLogic : IVacationLogic { private readonly ILogger _logger; private readonly IVacationStorage _vacationStorage; public VacationLogic(ILogger logger, IVacationStorage vacationStorage) { _logger = logger; _vacationStorage = vacationStorage; } public void Delete(int id) { throw new NotImplementedException(); } public PhisicalPersonViewModel? GetElement(int id) { throw new NotImplementedException(); } public List GetFilteredList(EmployeeSearchModel 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(); } } }