public async Task <BaseResponse <List <Customer> > > GetCustomerAsync(string bankName, string loanID) { try { List <Customer> customerList = new List <Customer>(); customerList = await _customerDao.GetCustomerAsync(bankName, loanID, true); return(new BaseResponse <List <Customer> >(customerList)); } catch (Exception ex) { throw ex; } }