Pibd-22_Lyakhov_T.I._Simple/StudentProgressRecord/Entity/Teacher.cs
2024-10-28 21:38:22 +04:00

29 lines
587 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentProgressRecord.Entity
{
public class Teacher
{
public long Id { get; set; }
public string Fio { get; set; }
public long DepartmentID { get; set; }
public static Teacher CreateEntity(long id, string Fio, long departmentId)
{
return new Teacher
{
Id = id,
Fio = Fio,
DepartmentID = departmentId
};
}
}
}