public async Task <Tuple <bool, string, List <LoansViewModel> > > GetLoansAmountTransferRejectedByDCIDorName(string DCIDorName) { Tuple <bool, string, List <LoansViewModel> > result = null; try { result = await _repoLoans.GetLoansAmountTransferRejectedByDCIDorName(DCIDorName); } catch (Exception ex) { ErrorLog.Write(ex); } return(result); }