10 lines
435 B
C#
10 lines
435 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using ToolsModule.ManagmentEntity;
|
|||
|
|
|||
|
namespace DepartmentContract.Services.IGenericEntityService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение оценок студентов за дисциплины
|
|||
|
/// </summary>
|
|||
|
public interface IStudentMarkPassedDisciplineService : IGenericEntityService<StudentMarkPassedDisciplineGetBindingModel, StudentMarkPassedDisciplineSetBindingModel> { }
|
|||
|
}
|