2024-04-16 20:15:07 +04:00
|
|
|
|
using StudentEnrollmentDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace StudentEnrollmentContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class StudentViewModel : IStudentModel
|
|
|
|
|
{
|
2024-05-06 20:26:16 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-04-16 20:15:07 +04:00
|
|
|
|
[DisplayName("Имя")]
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Фамилия")]
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Отчество")]
|
|
|
|
|
public string MiddleName { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Почта")]
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("ИНН")]
|
2024-05-06 20:26:16 +04:00
|
|
|
|
public long TIN { get; set; }
|
|
|
|
|
public int ExamPointsId { get; set; }
|
2024-04-16 20:15:07 +04:00
|
|
|
|
[DisplayName("Суммарное количество баллов")]
|
|
|
|
|
public int ExamPoints { get; set; }
|
2024-05-06 20:26:16 +04:00
|
|
|
|
public Dictionary<int, ICourseModel> StudentCourse
|
2024-04-16 20:15:07 +04:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
|
|
|
|
}
|