16 lines
640 B
C#
16 lines
640 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace UniversityContracts.ViewModels
|
||
{
|
||
public class ReportDisciplineViewModel
|
||
{
|
||
public string DisciplineName { get; set; } = string.Empty;
|
||
public List<(string StudentFIO, string DocumentDate, string EdStatus)> StudentEdStatus { get; set; } = new();
|
||
//выбираем дисциплину, выбираем период, отображаются студенты зачисленные через приказ в этот период со статусами обучения
|
||
}
|
||
}
|