StudentEnrollmentNew/StudentEnrollment/StudentEnrollmentContracts/BindingModels/StudentBindingModel.cs

21 lines
598 B
C#

using StudentEnrollmentDataModels.Models;
namespace StudentEnrollmentContracts.BindingModels
{
public class StudentBindingModel : IStudentModel
{
public long Id { get; set; }
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string MiddleName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string TIN { get; set; } = string.Empty;
public long ExamPointsId { get; set; }
public Dictionary<long, (ICourseModel, long)> StudentCourse
{
get;
set;
} = new();
}
}