public async Task <IDataResult <List <CustomerPaymentDetailDto> > > GetDetailsByCustomerId(int customerId)
 {
     return(new SuccessDataResult <List <CustomerPaymentDetailDto> >(
                await _customerCreditCardDal.GetDetails(c => c.UserId == customerId)));
 }