using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ACLib.P2.AppContext.Models { public partial class AC_Semesters { [Key] public int SemesterID { get; set; } public string SemesterName { get; set; } public Nullable StartDate { get; set; } public Nullable EndDate { get; set; } public Nullable LastClassDate { get; set; } public Nullable InstructorAccessStart { get; set; } public Nullable InstructorAccessEnd { get; set; } public string Weeks { get; set; } public Nullable RegistrationStart { get; set; } public Nullable RegistrationEnd { get; set; } public Nullable OrientationDate { get; set; } public Nullable LastDropingDate { get; set; } public Nullable LateRegistrationStart { get; set; } public Nullable LateRegistrationEnd { get; set; } public Nullable LastWithdrawDate { get; set; } public Nullable ExamStartDate { get; set; } public Nullable ExamEndDate { get; set; } public string WeeksWithExam { get; set; } public Nullable RegistrationOn { get; set; } public int MaxCourses { get; set; } public Nullable ComissionGenDate { get; set; } public Nullable SemesterRollDate { get; set; } public Nullable GradeRollDate { get; set; } public Nullable GradeSubmissionLastDate { get; set; } public Nullable CreateDate { get; set; } public Nullable UpdateDate { get; set; } } }