public async Task <Tuple <bool, string, List <LoansViewModel> > > GetPaidLoanDetailsByUserNameorDCID(string DcIDorName)
        {
            Tuple <bool, string, List <LoansViewModel> > result = null;

            try
            {
                result = await _repoLoans.GetPaidLoanDetailsByUserNameorDCID(DcIDorName);
            }
            catch (Exception ex)
            {
                ErrorLog.Write(ex);
            }
            return(result);
        }