StudentEnrollmentNew/StudentEnrollment/StudentEnrollmentContracts/BindingModels/StudentBindingModel.cs

21 lines
569 B
C#

using StudentEnrollmentDataModels.Models;
namespace StudentEnrollmentContracts.BindingModels
{
public class StudentBindingModel : IStudentModel
{
public int 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 long TIN { get; set; }
public int ExamPointsId { get; set; }
public Dictionary<int, ICourseModel> StudentCourse
{
get;
set;
} = new();
}
}