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

26 lines
509 B
C#

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