DepartmentProject/DepartmentPortal/Department/DepartmentContract/Services/IGenericEntityService/IStudentGroupService.cs

10 lines
358 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Services.IGenericEntityService
{
/// <summary>
/// Хранение учебных групп
/// </summary>
public interface IStudentGroupService : IGenericEntityService<StudentGroupGetBindingModel, StudentGroupSetBindingModel> { }
}