11 lines
467 B
C#
11 lines
467 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using DepartmentContract.ViewModels;
|
|||
|
using ToolsModule.ManagmentEntity;
|
|||
|
|
|||
|
namespace DepartmentContract.Logics.IGenericEntityLogic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Логика работы с годом поступления
|
|||
|
/// </summary>
|
|||
|
public interface IEnrollmentYearLogic : IGenericEntityLogic<EnrollmentYearGetBindingModel, EnrollmentYearSetBindingModel, EnrollmentYearListViewModel, EnrollmentYearViewModel> { }
|
|||
|
}
|