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

10 lines
302 B
C#
Raw Normal View History

2021-04-13 12:52:45 +04:00
using DepartmentBusinessLogic.BindingModels;
using ModuleTools.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение приказов
/// </summary>
public interface IOrderService : IGenerticEntityService<OrderGetBindingModel, OrderSetBindingModel> { }
}