10 lines
417 B
C#
10 lines
417 B
C#
using DepartmentContract.BindingModels;
|
|
using ToolsModule.ManagmentEntity;
|
|
|
|
namespace DepartmentContract.Services.IGenericEntityService
|
|
{
|
|
/// <summary>
|
|
/// Хранение историй синхронизации оценок
|
|
/// </summary>
|
|
public interface IStudentMarkSyncHistoryService : IGenericEntityService<StudentMarkSyncHistoryGetBindingModel, StudentMarkSyncHistorySetBindingModel> { }
|
|
} |