DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Interfaces/IStudentService.cs
2021-04-12 16:57:29 +04:00

10 lines
310 B
C#

using DepartmentBusinessLogic.BindingModels;
using ModuleTools.Interfaces;
namespace DepartmentBusinessLogic.Interfaces
{
/// <summary>
/// Хранение студентов
/// </summary>
public interface IStudentService : IGenerticEntityService<StudentGetBindingModel, StudentSetBindingModel> { }
}