2023-04-08 22:25:55 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
|
|
|
{
|
2023-04-09 00:48:03 +04:00
|
|
|
|
public class ReportDisciplineViewModel
|
2023-04-08 22:25:55 +04:00
|
|
|
|
{
|
2023-04-09 00:48:03 +04:00
|
|
|
|
public string DisciplineName { get; set; } = string.Empty;
|
|
|
|
|
public List<(string StudentFIO, string DocumentDate, string EdStatus)> StudentEdStatus { get; set; } = new();
|
2023-04-08 22:25:55 +04:00
|
|
|
|
//выбираем дисциплину, выбираем период, отображаются студенты зачисленные через приказ в этот период со статусами обучения
|
|
|
|
|
}
|
|
|
|
|
}
|