DepartmentProject/DepartmentPortal/Department/DepartmentContract/Logics/IGenericEntityLogic/IOrderLogic.cs

11 lines
402 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using DepartmentContract.ViewModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Logics.IGenericEntityLogic
{
/// <summary>
/// Логика работы с приказами
/// </summary>
public interface IOrderLogic : IGenericEntityLogic<OrderGetBindingModel, OrderSetBindingModel, OrderListViewModel, OrderViewModel> { }
}