2024-12-02 20:25:45 +04:00

42 lines
1.0 KiB
C#

using StudentProgressRecord.Entity.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{
public class StudentTransition
{
public long Id { get; set; }
[Browsable(false)]
public long StudentId { get; set; }
[DisplayName("Студент")]
public string StudentName { get; set; } = string.Empty;
[DisplayName("Тип операции")]
public Operations Operation { get; set; }
[DisplayName("Дата")]
public DateTime Date { get; set; }
public static StudentTransition CreateOperation(long id, long studentId, Operations operation, DateTime time)
{
return new StudentTransition
{
Id = id,
StudentId = studentId,
Operation = operation,
Date = time
};
}
}
}