|
|
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_Instructors
|
|
|
{
|
|
|
[Key]
|
|
|
public int ID { get; set; }
|
|
|
public Nullable<int> InstructorID { get; set; }
|
|
|
public Nullable<int> UserTypeID { get; set; }
|
|
|
public string FirstName { get; set; }
|
|
|
public string MiddleName { get; set; }
|
|
|
public string LastName { get; set; }
|
|
|
public Nullable<System.DateTime> Birthday { get; set; }
|
|
|
public string Phone { get; set; }
|
|
|
public string Cell { get; set; }
|
|
|
public string Email { get; set; }
|
|
|
public string Position { get; set; }
|
|
|
public int CampusID { get; set; }
|
|
|
public int InstructorTypeID { get; set; }
|
|
|
public string EmployeeID { get; set; }
|
|
|
public int DepartmentID { get; set; }
|
|
|
public string Manager { get; set; }
|
|
|
public bool IsManager { get; set; }
|
|
|
public string Education { get; set; }
|
|
|
public string AdditionalQualification { get; set; }
|
|
|
public string Address { get; set; }
|
|
|
public int RoleID { get; set; }
|
|
|
public string Status { get; set; }
|
|
|
public string Picture { get; set; }
|
|
|
public string TeachingCourse { get; set; }
|
|
|
public Nullable<System.DateTime> Employmentdate { get; set; }
|
|
|
public Nullable<System.DateTime> CreateDate { get; set; }
|
|
|
public Nullable<System.DateTime> UpdateDate { get; set; }
|
|
|
}
|
|
|
}
|