public bool CheckLoanDisbursed(int LoanMasterId)
        {
            bool isSuccess = false;

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

            isDisbursed = dl.CheckLoanDisbursed(LoanMasterId);

            return(isDisbursed);
        }