Pibd-22_Lyakhov_T.I._Simple/StudentProgressRecord/Entity/Student.cs

34 lines
689 B
C#
Raw Normal View History

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; }
2024-11-08 19:32:02 +04:00
public string Name { get; set; }
2024-10-28 19:18:57 +04:00
public bool FamilyPos { get; set; }
public bool Domitory { get; set; }
2024-11-08 19:32:02 +04:00
public static Student CreateEntity(long id, string name, bool familyPos,
bool domitory)
2024-10-28 19:18:57 +04:00
{
return new Student
{
Id = id,
2024-11-08 19:32:02 +04:00
Name = name,
2024-10-28 19:18:57 +04:00
FamilyPos = familyPos,
Domitory = domitory
2024-10-28 19:18:57 +04:00
};
}
}
}