10 lines
302 B
C#
10 lines
302 B
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using ModuleTools.Interfaces;
|
|||
|
|
|||
|
namespace DepartmentBusinessLogic.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение приказов
|
|||
|
/// </summary>
|
|||
|
public interface IOrderService : IGenerticEntityService<OrderGetBindingModel, OrderSetBindingModel> { }
|
|||
|
}
|