20 lines
362 B
C#
Raw Normal View History

2024-12-07 15:38:30 +04:00
namespace StudentProgressRecord.Entity
2024-10-28 19:18:57 +04:00
{
public class Teacher
{
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
2024-11-08 19:32:02 +04:00
public static Teacher CreateEntity(long id, string name)
2024-10-28 19:18:57 +04:00
{
return new Teacher
{
Id = id,
2024-11-08 19:32:02 +04:00
Name = name
2024-10-28 19:18:57 +04:00
};
}
}
}