@model IEnumerable @{ ViewBag.Title = "Employee Records"; }

Employee Records

@foreach (var employee in Model) { }
Full Name Date of Birth Gender Phone Number Address District PinCode Email ID Marital Status Blood Group Pan Card No Aadhar Card No Company Name Department PF Number UAN Number HR Name HR Contact Number HR Email ID Reporting Manager Name Reporting Manager Contact No Reporting Manager Email ID Reference Name Reference Phone No Reference Email ID Family Name Family Relation Family DOB Nominee Name Nominee Relation Nominee DOB Nominee Contact No Emergency Contact Name Emergency Contact Relation Emergency Contact Phone No Document Pan File Document Aadhar File Document License File Document Passport File Document Bank Details File Educational Certificate File Relieving Letter File Position Joining Date Location Manager Actions
@employee.FullName @Convert.ToDateTime(employee.DateOfBirth).ToString("dd-MM-yyyy") @employee.Gender @employee.PhoneNumber @employee.Address @employee.District @employee.PinCode @employee.EmailId @employee.MaritalStatus @employee.BloodGroup @employee.PanCardNo @employee.AadharCardNo @employee.CompanyName @employee.Department @employee.PFNumber @employee.UANNumber @employee.HRName @employee.HRContactNumber @employee.HREmailId @employee.ReportingManagerName @employee.ReportingManagerContactNo @employee.ReportingManagerEmailId @employee.ReferenceName @employee.ReferencePhoneNo @employee.ReferenceEmailId @employee.FamilyName @employee.FamilyRelation @Convert.ToDateTime(employee.FamilyDOB).ToString("dd-MM-yyyy") @employee.NomineeName @employee.NomineeRelation @Convert.ToDateTime(employee.NomineeDOB).ToString("dd-MM-yyyy") @employee.NomineeContactNo @employee.EmergencyContactName @employee.EmergencyContactRelation @employee.EmergencyContactPhoneNo @(string.IsNullOrEmpty(employee.DocumentPanFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.DocumentAadharFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.DocumentLicenseFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.DocumentPassportFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.DocumentBankDetailsFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.EducationalCertificateFilePath) ? "" : "Download") @(string.IsNullOrEmpty(employee.RelievingLetterFilePath) ? "" : "Download") @employee.Position @Convert.ToDateTime(employee.JoiningDate).ToString("dd-MM-yyyy") @employee.Location @employee.Manager
@section scripts { }