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_TermCourseSeats { [Key] public int ID { get; set; } public Nullable CourseSeatID { get; set; } public Nullable ApplicationID { get; set; } public Nullable SemesterID { get; set; } public Nullable RCategoryID { get; set; } public Nullable ClassID { get; set; } public string CourseRunTitle { get; set; } public float CourseFee { get; set; } public float LabFee { get; set; } public float LateFee { get; set; } public Nullable CoursePaid { get; set; } public Nullable PaidDate { get; set; } public string ReceiptNumber { get; set; } public string ClassType { get; set; } public string ClassRoom { get; set; } public Nullable RegistrationDate { get; set; } public Nullable DropingDate { get; set; } public Nullable Locked { get; set; } public string RegSource { get; set; } public Nullable UpdateDate { get; set; } //public virtual AC_Courses AC_Courses { get; set; } public virtual AC_ClassRun AC_ClassRun { get; set; } //public virtual AC_ApplicantInfo AC_ApplicantInfo { get; set; } //public virtual AC_ApplicantCourse AC_ApplicantCourse { get; set; } public virtual AC_Semesters AC_Semesters { get; set; } //public virtual AC_PreAvailableCourses AC_PreAvailableCourses { get; set; } } }