56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using EmployeeManagmentContracts.BindingModels;
|
|
using EmployeeManagmentContracts.BusinessLogicContracts;
|
|
using EmployeeManagmentContracts.SearchModels;
|
|
using EmployeeManagmentContracts.StoragesContracts;
|
|
using EmployeeManagmentContracts.ViewModels;
|
|
using EmployeeManagmentDataBaseImplement;
|
|
using EmployeeManagmentDataBaseImplement.Models;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace EmployeeManagmentBusinessLogic.BusinessLogic
|
|
{
|
|
public class EmployeeLogic : IEmployeeLogic
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IEmployeeStorage _employeeStorage;
|
|
|
|
public EmployeeLogic(ILogger<EmployeeLogic> logger, IEmployeeStorage employeeStorage)
|
|
{
|
|
_logger = logger;
|
|
_employeeStorage = employeeStorage;
|
|
}
|
|
|
|
public void Delete(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public EmployeeViewModel? GetElement(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<EmployeeViewModel> GetFilteredList(EmployeeSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<EmployeeViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Insert(EmployeeViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Update(EmployeeViewModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|