2024-10-28 19:18:57 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace StudentProgressRecord.Entity
|
|
|
|
|
{
|
|
|
|
|
public class Student
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Fio { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool FamilyPos { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Domitory { get; set; }
|
|
|
|
|
|
|
|
|
|
|
2024-10-29 13:50:35 +04:00
|
|
|
|
public static Student CreateEntity(long id, string fio, bool familyPos,
|
|
|
|
|
bool domitory)
|
2024-10-28 19:18:57 +04:00
|
|
|
|
{
|
|
|
|
|
return new Student
|
|
|
|
|
{
|
|
|
|
|
Id = id,
|
|
|
|
|
Fio = fio,
|
|
|
|
|
FamilyPos = familyPos,
|
2024-10-29 13:50:35 +04:00
|
|
|
|
Domitory = domitory
|
2024-10-28 19:18:57 +04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|