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