public PaymentPagSeguroController(ISettingService settingService, IWebHelper webHelper, IPagSeguroService pagSeguroService, PagSeguroPaymentSetting pagSeguroPaymentSetting)
 {
     this._settingService          = settingService;
     this._webHelper               = webHelper;
     this._pagSeguroService        = pagSeguroService;
     this._pagSeguroPaymentSetting = pagSeguroPaymentSetting;
 }
Exemplo n.º 2
0
 public PagSeguroPaymentProcessor(ILogger logger, HttpContextBase httpContext, IPagSeguroService pagSeguroService, ISettingService settingService, PagSeguroPaymentSetting pagSeguroSetting, CheckPaymentTask checkPaymentTask)
 {
     this._httpContext      = httpContext;
     this._logger           = logger;
     this._pagSeguroService = pagSeguroService;
     this._settingService   = settingService;
     this._pagSeguroSetting = pagSeguroSetting;
     this._checkPaymentTask = checkPaymentTask;
 }
 public PagSeguroPaymentProcessor(ILogger logger, IHttpContextAccessor httpContextAccessor, IPagSeguroService pagSeguroService, ISettingService settingService, PagSeguroPaymentSetting pagSeguroSetting,
                                  CheckPaymentTask checkPaymentTask, IWebHelper webHelper, ILocalizationService localizationService)
 {
     this._logger = logger;
     this._httpContextAccessor = httpContextAccessor;
     this._pagSeguroService    = pagSeguroService;
     this._settingService      = settingService;
     this._pagSeguroSetting    = pagSeguroSetting;
     this._checkPaymentTask    = checkPaymentTask;
     this._webHelper           = webHelper;
     this._localizationService = localizationService;
 }
Exemplo n.º 4
0
 public CheckPaymentTask(IScheduleTaskService scheduleTaskService, IPagSeguroService pagSeguroService)
 {
     this._pagSeguroService    = pagSeguroService;
     this._scheduleTaskService = scheduleTaskService;
 }
 public CheckPaymentTask(IScheduleTaskService scheduleTaskService, IPagSeguroService pagSeguroService, IRepository <ScheduleTask> scheduleTaskRepository)
 {
     this._pagSeguroService       = pagSeguroService;
     this._scheduleTaskService    = scheduleTaskService;
     this._scheduleTaskRepository = scheduleTaskRepository;
 }
Exemplo n.º 6
0
 public PagSeguroApplication(IPagSeguroService pagSeguroService)
 {
     _pagSeguroService = pagSeguroService;
 }