DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Interfaces/ITimeNormService.cs

10 lines
318 B
C#

using DepartmentBusinessLogic.BindingModels;
using ToolsModule.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение норм времени
/// </summary>
public interface ITimeNormService : IGenerticEntityService<TimeNormGetBindingModel, TimeNormSetBindingModel> { }
}