public ServerToServerResponseController(
     IResponsePaymentService responsePaymentService,
     IEndPaymentService endPaymentService
     )
 {
     _responsePaymentService = responsePaymentService;
     _endPaymentService      = endPaymentService;
 }
 public HomeController(
     IMapper mapper,
     IResponsePaymentService responsePaymentService,
     IEndPaymentService endPaymentService,
     IRequestPaymentService requestPaymentService
     )
 {
     _mapper = mapper;
     _responsePaymentService = responsePaymentService;
     _endPaymentService      = endPaymentService;
     _requestPaymentService  = requestPaymentService;
 }