DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Interfaces/IStudentGroupService.cs

10 lines
332 B
C#
Raw Normal View History

2021-04-12 10:01:42 +04:00
using DepartmentBusinessLogic.BindingModels;
using ModuleTools.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение учебных групп
/// </summary>
public interface IStudentGroupService : IGenerticEntityService<StudentGroupGetBindingModel, StudentGroupSetBindingModel> { }
}