|
|
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<int> CourseSeatID { get; set; }
|
|
|
public Nullable<int> ApplicationID { get; set; }
|
|
|
public Nullable<int> SemesterID { get; set; }
|
|
|
public Nullable<int> RCategoryID { get; set; }
|
|
|
public Nullable<int> 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<bool> CoursePaid { get; set; }
|
|
|
public Nullable<System.DateTime> PaidDate { get; set; }
|
|
|
public string ReceiptNumber { get; set; }
|
|
|
public string ClassType { get; set; }
|
|
|
public string ClassRoom { get; set; }
|
|
|
public Nullable<System.DateTime> RegistrationDate { get; set; }
|
|
|
public Nullable<System.DateTime> DropingDate { get; set; }
|
|
|
public Nullable<bool> Locked { get; set; }
|
|
|
public string RegSource { get; set; }
|
|
|
public Nullable<System.DateTime> 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; }
|
|
|
}
|
|
|
}
|