2021-04-06 22:07:11 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-04-06 22:07:11 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение норм времени
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITimeNormService : IGenerticEntityService<TimeNormGetBindingModel, TimeNormSetBindingModel> { }
|
|
|
|
|
}
|