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

11 lines
428 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы с нормами времени
/// </summary>
public interface ITimeNormLogic : IGenericEntityLogic<TimeNormGetBindingModel, TimeNormSetBindingModel, TimeNormListViewModel, TimeNormViewModel> { }
}