public bool CheckLoanDisbursed(int LoanMasterId) { bool isSuccess = false; isSuccess = _LoanDisbursementDataAccess.CheckLoanDisbursed(LoanMasterId); return(isSuccess); }
public bool CheckForDisbursementStart(int LoanMasterId) { bool isDisbursed = false; LoanDisbursementDataAccess dl = new LoanDisbursementDataAccess(); isDisbursed = dl.CheckLoanDisbursed(LoanMasterId); return(isDisbursed); }