10 lines
372 B
C#
10 lines
372 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using ToolsModule.ManagmentEntity;
|
|||
|
|
|||
|
namespace DepartmentContract.Services.IGenericEntityService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение годов поступления
|
|||
|
/// </summary>
|
|||
|
public interface IEnrollmentYearService : IGenericEntityService<EnrollmentYearGetBindingModel, EnrollmentYearSetBindingModel> { }
|
|||
|
}
|