public IEnumerable <PaymentMethod> AddPaymentMethod(AddPaymentMethodDTO paymentMethodToAdd) { _repo.AddCustomerPaymentMethod(paymentMethodToAdd); return(_repo.GetPaymentMethodByCustomerId(paymentMethodToAdd.CustomerId)); }