Exemplo n.º 1
0
        public RequestPaymentController(

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