public MessageController(IFaraBotUserService BotService, IWebHelper webHelper, IFaraBotConfigService BotConfigService, ICustomerRegistrationService CustomerService, CustomerSettings customerSettings)
 {
     _BotUserService   = BotService;
     _BotConfigService = BotConfigService;
     _CustomerService  = CustomerService;
     _customerSettings = customerSettings;
     _webHelper        = webHelper;
 }
示例#2
0
 public FaraBotController(IFaraBotUserService BotService, IFaraBotConfigService BotConfigService, IOrderService orderService, ICustomerRegistrationService CustomerService,
                          IWorkContext workContext, OrderSettings orderSettings, IStoreContext storeContext, ICheckoutModelFactory checkoutModelFactory, IWebHelper webHelper, CustomerSettings customerSettings)
 {
     _BotUserService       = BotService;
     _BotConfigService     = BotConfigService;
     _orderService         = orderService;
     _workContext          = workContext;
     _orderSettings        = orderSettings;
     _storeContext         = storeContext;
     _checkoutModelFactory = checkoutModelFactory;
     _customerSettings     = customerSettings;
     _webHelper            = webHelper;
     _CustomerService      = CustomerService;
 }
示例#3
0
 public BotTelegram(IFaraBotUserService BotService, IFaraBotConfigService BotConfigService)
 {
     _BotUserService   = BotService;
     _BotConfigService = BotConfigService;
 }