DepartmentProject/DepartmentPortal/Department/DepartmentContract/Logics/IGenericEntityLogic/IEmployeeLogic.cs

11 lines
428 B
C#
Raw Permalink Normal View History

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы с сотрудниками
/// </summary>
public interface IEmployeeLogic : IGenericEntityLogic<EmployeeGetBindingModel, EmployeeSetBindingModel, EmployeeListViewModel, EmployeeViewModel> { }
}