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

10 lines
310 B
C#
Raw Normal View History

2021-04-12 16:57:29 +04:00
using DepartmentBusinessLogic.BindingModels;
using ModuleTools.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение студентов
/// </summary>
public interface IStudentService : IGenerticEntityService<StudentGetBindingModel, StudentSetBindingModel> { }
}