//------------------------------------------------------------------------------ // // 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 BuddyFinance.Model { using System; using System.Collections.Generic; public partial class EmploymentDetail { public int ProfileId { get; set; } public Nullable EmploymentTypeId { get; set; } public string EmployerName { get; set; } public string EmployerContactNumber { get; set; } public Nullable EmploymentStartDate { get; set; } public Nullable EmploymentEndDate { get; set; } public Nullable GrossMonthlyIncome { get; set; } public Nullable NetMonthlyIncome { get; set; } public string EmployerNumber { get; set; } public Nullable SalaryDay { get; set; } public Nullable BillingDay { get; set; } public virtual EmploymentType EmploymentType { get; set; } public virtual Profile Profile { get; set; } } }