Пример #1
0
 public CatalogDialog(IDialogFactory dialogFactory, IBasketService basketService,
                      ICatalogService catalogService, ICatalogAIService catalogAIService,
                      IIdentityService identityService, IProductSearchImageService productSearchImageService)
 {
     this.dialogFactory             = dialogFactory;
     this.catalogService            = catalogService;
     this.basketService             = basketService;
     this.catalogAIService          = catalogAIService;
     this.identityService           = identityService;
     this.productSearchImageService = productSearchImageService;
 }
Пример #2
0
 public DialogFactory(ICatalogService catalogService, IBasketService basketService,
                      ICatalogAIService catalogAIService, IProductSearchImageService productSearchImageService,
                      IOrderingService orderingService, IOIDCClient oidcClient,
                      IIdentityService identityService, BotSettings botSettings)
 {
     this.catalogService            = catalogService;
     this.basketService             = basketService;
     this.catalogAIService          = catalogAIService;
     this.productSearchImageService = productSearchImageService;
     this.orderingService           = orderingService;
     this.oidcClient      = oidcClient;
     this.identityService = identityService;
     this.botSettings     = botSettings;
 }
Пример #3
0
 public CatalogFilterDialog(ICatalogService catalogService, IProductSearchImageService productSearchImageService)
 {
     this.catalogService            = catalogService;
     this.productSearchImageService = productSearchImageService;
 }
 public CatalogFilterDialogService(IOptions <AppSettings> appSettings, IProductSearchImageService productSearchImageService, IAttachmentService attachmentService)
 {
     this.productSearchImageService = productSearchImageService;
     this.attachmentService         = attachmentService;
     this.appSettings = appSettings.Value;
 }