28 lines
993 B
C#
28 lines
993 B
C#
using DepartmentContract.BindingModels;
|
||
using DepartmentContract.Logics.IGenericEntityLogic;
|
||
using DepartmentContract.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using ToolsModule.ManagmentEntity;
|
||
|
||
namespace DepartmentBusinessLogic.BusinessLogics.GenericBusinessLogic
|
||
{
|
||
/// <summary>
|
||
/// Логика работы с историями синхронизации оценок
|
||
/// </summary>
|
||
public class StudentMarkSyncHistoryBusinessLogic : GenericBusinessLogic<StudentMarkSyncHistoryGetBindingModel, StudentMarkSyncHistorySetBindingModel, StudentMarkSyncHistoryListViewModel, StudentMarkSyncHistoryViewModel>, IStudentMarkSyncHistoryLogic
|
||
{
|
||
public Task<bool> SyncMarks()
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
public Task<bool> SyncStudentMarks(Guid studentId)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
}
|
||
} |