ProjectExams/Project/Project/Entities/StatementStudent.cs
2024-12-22 22:20:57 +04:00

21 lines
462 B
C#

using Project.Entities.Enums;
namespace Project.Entities;
public class StatementStudent
{
public int Id { get; private set; }
public int StudentId { get; private set; }
public Mark Mark { get; private set; }
public static StatementStudent CreateOperation(int id, int studentId, Mark mark)
{
return new StatementStudent
{
Id = id,
StudentId = studentId,
Mark = mark
};
}
}