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