Ejemplo n.º 1
0
 public OrderController(IWorkContext workContext, ICustomerService customerService,IOrderService orderService,
     IQuestionAnswerEntityData questionAnswerEntityDataService, IZipCodeService zipCodeService)
 {
     this._customerService = customerService;
     this._workContext = workContext;
     this._orderService = orderService;
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._zipCodeService = zipCodeService;
 }
Ejemplo n.º 2
0
 public OrderController(IWorkContext workContext, ICustomerService customerService, IOrderService orderService,
                        IQuestionAnswerEntityData questionAnswerEntityDataService, IZipCodeService zipCodeService)
 {
     this._customerService = customerService;
     this._workContext     = workContext;
     this._orderService    = orderService;
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._zipCodeService = zipCodeService;
 }
 public WorkflowMessageService(IWebHelper webHelper, IZipCodeService zipCodeService,
                               IQuestionAnswerEntityData questionAnswerEntityDataService, IDateTimeHelper dateTimeHelper
                               , ICustomerService customerService)
 {
     this._webHelper      = webHelper;
     this._zipCodeService = zipCodeService;
     _siteSetting         = new SiteSetting();
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._dateTimeHelper  = dateTimeHelper;
     this._customerService = customerService;
 }
Ejemplo n.º 4
0
        public GutterOrderController(IWorkContext workContext, ICustomerService customerService, IOrderService orderService,
                                     IQuestionAnswerEntityData questionAnswerEntityDataService, IZipCodeService zipCodeService,
                                     IWorkflowMessageService workflowMessageService,
                                     IDateTimeHelper dateTimeHelper,
                                     IDbContext dbContext)
        {
            this._customerService = customerService;
            this._workContext     = workContext;
            this._orderService    = orderService;
            this._questionAnswerEntityDataService = questionAnswerEntityDataService;
            this._zipCodeService = zipCodeService;

            this._workflowMessageService = workflowMessageService;
            this._dateTimeHelper         = dateTimeHelper;
            this._dbContext = dbContext;
        }
        public GutterOrderController(IWorkContext workContext, ICustomerService customerService, IOrderService orderService,
            IQuestionAnswerEntityData questionAnswerEntityDataService, IZipCodeService zipCodeService,
            IWorkflowMessageService workflowMessageService,
            IDateTimeHelper dateTimeHelper,
            IDbContext dbContext)
        {
            this._customerService = customerService;
            this._workContext = workContext;
            this._orderService = orderService;
            this._questionAnswerEntityDataService = questionAnswerEntityDataService;
            this._zipCodeService = zipCodeService;

            this._workflowMessageService = workflowMessageService;
            this._dateTimeHelper = dateTimeHelper;
            this._dbContext = dbContext;
        }
Ejemplo n.º 6
0
 public HomeController(IDbContext context, IAuthenticationService authenticationService, IWorkContext workContext, ICustomerService customerService,
                       IQuestionAnswerEntityData questionAnswerEntityDataService, HttpContextBase httpContext,
                       IPaymentMethod paymentMethod, IOrderService orderService, IWebHelper webHelper,
                       IWorkflowMessageService workflowMessageService, IZipCodeService zipCodeService,
                       IDbContext dbContext)
 {
     this._context = context;
     this._authenticationService           = authenticationService;
     this._customerService                 = customerService;
     this._workContext                     = workContext;
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._httpContext                     = httpContext;
     this._paymentMethod                   = paymentMethod;
     this._orderService                    = orderService;
     this._webHelper = webHelper;
     this._workflowMessageService = workflowMessageService;
     this._zipCodeService         = zipCodeService;
     this._dbContext = dbContext;
 }
Ejemplo n.º 7
0
 public HomeController(IDbContext context, IAuthenticationService authenticationService, IWorkContext workContext, ICustomerService customerService,
     IQuestionAnswerEntityData questionAnswerEntityDataService, HttpContextBase httpContext,
     IPaymentMethod paymentMethod, IOrderService orderService, IWebHelper webHelper,
     IWorkflowMessageService workflowMessageService, IZipCodeService zipCodeService,
     IDbContext dbContext)
 {
     this._context = context;
     this._authenticationService = authenticationService;
     this._customerService = customerService;
     this._workContext = workContext;
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._httpContext = httpContext;
     this._paymentMethod = paymentMethod;
     this._orderService = orderService;
     this._webHelper = webHelper;
     this._workflowMessageService = workflowMessageService;
     this._zipCodeService = zipCodeService;
     this._dbContext = dbContext;
 }
 public WorkflowMessageService(IWebHelper webHelper, IZipCodeService zipCodeService,
     IQuestionAnswerEntityData questionAnswerEntityDataService, IDateTimeHelper dateTimeHelper
     , ICustomerService customerService)
 {
     this._webHelper = webHelper;
     this._zipCodeService = zipCodeService;
     _siteSetting = new SiteSetting();
     this._questionAnswerEntityDataService = questionAnswerEntityDataService;
     this._dateTimeHelper =dateTimeHelper;
     this._customerService = customerService;
 }