10 lines
310 B
C#
10 lines
310 B
C#
using DepartmentBusinessLogic.BindingModels;
|
|
using ToolsModule.Interfaces;
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Хранение студентов
|
|
/// </summary>
|
|
public interface IStudentService : IGenerticEntityService<StudentGetBindingModel, StudentSetBindingModel> { }
|
|
} |