public GroupLoanDisbursementDto GetByID(int id)
        {
            List <uspFederationLoanDisbursement_Result> lstuspFederationLoanDisbursement_Result = _dbContext.uspFederationLoanDisbursement(id).ToList();
            GroupLoanDisbursementDto groupLoanDisbursementDto = Mapper.Map <uspFederationLoanDisbursement_Result, GroupLoanDisbursementDto>(lstuspFederationLoanDisbursement_Result.FirstOrDefault());

            return(groupLoanDisbursementDto);
        }