public ActionResult GetCustomerPayments(int customerId) { var customerPayments = _paymentRepository.GetCustomerActivePayments(customerId); return(Ok(customerPayments)); }