Esempio n. 1
0
 public EmailMagentoProcessor(IMapper mapper,
                              IGmailService emailService,
                              IMagentoService magentoService,
                              IConnectionService connectionService,
                              IUserChannelService userChannelService,
                              IChannelEmailService channelEmailService,
                              IChannelMagentoService channelMagentoService,
                              ITicketEmailService ticketEmailService,
                              IMessageEmailService messageEmailService,
                              ITicketMagentoService ticketMagentoService,
                              IMessageMagentoService messageMagentoService,
                              ITicketEmailMagentoService ticketEmailMagentoService,
                              IMessageEmailMagentoService messageEmailMagentoService)
 {
     this.mapper                     = mapper;
     this.emailService               = emailService;
     this.magentoService             = magentoService;
     this.connectionService          = connectionService;
     this.userChannelService         = userChannelService;
     this.channelEmailService        = channelEmailService;
     this.channelMagentoService      = channelMagentoService;
     this.ticketEmailService         = ticketEmailService;
     this.messageEmailService        = messageEmailService;
     this.ticketMagentoService       = ticketMagentoService;
     this.messageMagentoService      = messageMagentoService;
     this.ticketEmailMagentoService  = ticketEmailMagentoService;
     this.messageEmailMagentoService = messageEmailMagentoService;
 }
 public ServiceConnectionController(IEbayService ebayService,
                                    IMagentoService magentoService,
                                    IGmailService gmailService,
                                    IChannelEbayService channelEbayService,
                                    IChannelMagentoService channelMagentoService,
                                    IChannelEmailService channelEmailService,
                                    IUserService userService,
                                    IUserChannelService userChannelSerivce,
                                    IConnectionService connectionService,
                                    IMapper mapper)
 {
     this.ebayService           = ebayService;
     this.magentoService        = magentoService;
     this.gmailService          = gmailService;
     this.channelEbayService    = channelEbayService;
     this.channelMagentoService = channelMagentoService;
     this.channelEmailService   = channelEmailService;
     this.userService           = userService;
     this.userChannelSerivce    = userChannelSerivce;
     this.connectionService     = connectionService;
     this.mapper = mapper;
 }