public void AddTotblDeclarationLoans(tblDeclarationLoan tblDeclarationLoan)
 {
     AddObject("tblDeclarationLoans", tblDeclarationLoan);
 }
 public static tblDeclarationLoan CreatetblDeclarationLoan(long id, string branchId)
 {
     tblDeclarationLoan tblDeclarationLoan = new tblDeclarationLoan();
     tblDeclarationLoan.ID = id;
     tblDeclarationLoan.BranchId = branchId;
     return tblDeclarationLoan;
 }