10 lines
332 B
C#
10 lines
332 B
C#
using DepartmentBusinessLogic.BindingModels;
|
|
using ToolsModule.Interfaces;
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Хранение учебных групп
|
|
/// </summary>
|
|
public interface IStudentGroupService : IGenerticEntityService<StudentGroupGetBindingModel, StudentGroupSetBindingModel> { }
|
|
} |