2021-04-03 08:05:01 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-04-03 08:05:01 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение сотрудников
|
|
|
|
|
/// </summary>
|
2022-03-19 19:58:10 +04:00
|
|
|
|
public interface IEmployeeService : IGenericEntityService<EmployeeGetBindingModel, EmployeeSetBindingModel> { }
|
2021-04-03 08:05:01 +04:00
|
|
|
|
}
|