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