2024-04-18 19:35:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-04-21 19:12:38 +04:00
|
|
|
|
using UniversityDataModels.Enums;
|
2024-04-18 19:35:33 +04:00
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class AttestationViewModel : IAttestationModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-29 15:37:19 +04:00
|
|
|
|
public int UserId { get; set; }
|
2024-04-18 19:35:33 +04:00
|
|
|
|
public int StudentId { get; set; }
|
|
|
|
|
[DisplayName("Форма оценивания")]
|
|
|
|
|
public string FormOfEvaluation { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Оценка")]
|
2024-04-21 19:12:38 +04:00
|
|
|
|
public AttestationScore Score { get; set; } = AttestationScore.Неявка;
|
2024-04-18 19:35:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|