15 lines
602 B
C#
15 lines
602 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using DepartmentContract.ViewModels;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using ToolsModule.ManagmentEntity;
|
|||
|
|
|||
|
namespace DepartmentContract.Logics.IGenericEntityLogic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Логика работы с историями синхронизации оценок
|
|||
|
/// </summary>
|
|||
|
public interface IStudentMarkSyncHistoryLogic : IGenericEntityLogic<StudentMarkSyncHistoryGetBindingModel, StudentMarkSyncHistorySetBindingModel, StudentMarkSyncHistoryListViewModel, StudentMarkSyncHistoryViewModel>
|
|||
|
{
|
|||
|
Task<bool> SyncMarks();
|
|||
|
}
|
|||
|
}
|