using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HRM.BO { public enum enumLoanDocType { None = 0, Pdf = 1, Excel = 2, Doc = 3 } public enum enumLoanPurpose { None = 0, Illness_Self = 1, Illness_Family = 2, Passage_Self = 3, Passage_Family = 4, Performance_Pilgrimage = 5, Performance_Marriage = 6, Performance_Funeral = 7, Performance_Other_Religious = 8, Expenditure_Build_House = 9, Expenditure_Purchase_House = 10, Expenditure_Purchase_Site = 11, Expenditure_Purchase_Ready_Made_house = 12, Expenditure_Repair_Ready_Made_house = 13 } }