20 lines
362 B
C#
20 lines
362 B
C#
namespace StudentProgressRecord.Entity
|
|
{
|
|
public class Teacher
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public static Teacher CreateEntity(long id, string name)
|
|
{
|
|
return new Teacher
|
|
{
|
|
Id = id,
|
|
Name = name
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|