10 lines
380 B
C#
10 lines
380 B
C#
using DepartmentBusinessLogic.BindingModels;
|
|
using ToolsModule.Interfaces;
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Хранение записей приказов по студентам
|
|
/// </summary>
|
|
public interface IOrderStudentRecordService : IGenerticEntityService<OrderStudentRecordGetBindingModel, OrderStudentRecordSetBindingModel> { }
|
|
} |