10 lines
339 B
C#
10 lines
339 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using ToolsModule.Interfaces;
|
|||
|
|
|||
|
namespace DepartmentContract.Services.IGenericEntityService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение норм времени
|
|||
|
/// </summary>
|
|||
|
public interface ITimeNormService : IGenericEntityService<TimeNormGetBindingModel, TimeNormSetBindingModel> { }
|
|||
|
}
|