//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace ERP.Dal { using System; using System.Collections.Generic; public partial class InterviewMaster { public InterviewMaster() { this.InterviewAttachments = new HashSet(); } public System.Guid InterviewID { get; set; } public int InterviewNo { get; set; } public string Name { get; set; } public string Email { get; set; } public string MobileNo { get; set; } public System.Guid EducationId { get; set; } public System.Guid DepartmentId { get; set; } public System.Guid DesignationId { get; set; } public Nullable CurrentSalary { get; set; } public Nullable ExpectedSalary { get; set; } public Nullable ExperienceYear { get; set; } public Nullable ExperienceMonth { get; set; } public Nullable IsJoinDays { get; set; } public Nullable JoinAfterDaysOrMonth { get; set; } public string PersonalDetail { get; set; } public Nullable InterviewStatusId { get; set; } public Nullable InterviewDate { get; set; } public string InterviewTime { get; set; } public Nullable JoinDate { get; set; } public string Reason { get; set; } public System.DateTime CreatedDate { get; set; } public Nullable CreatedBy { get; set; } public Nullable ModifiedBy { get; set; } public System.DateTime ModifiedDate { get; set; } public bool IsActive { get; set; } public virtual DepartmentMaster DepartmentMaster { get; set; } public virtual DesignationMaster DesignationMaster { get; set; } public virtual EducationMaster EducationMaster { get; set; } public virtual ICollection InterviewAttachments { get; set; } } }