Exemple #1
0
 public AiService(AppSettings appSettings)
 {
     _appSettings              = appSettings;
     _witTokenService          = new WitTokenService(appSettings);
     _witService               = new WitService(appSettings);
     _proceduceAiService       = new ProceduceAiService(appSettings);
     _templatesRepository      = new TemplatesRepository(appSettings);
     _productsRepository       = new ProductsRepository(appSettings);
     _extentionService         = new ExtentionService(appSettings);
     _productCaresService      = new ProductCaresService(appSettings);
     _productGeneralRepository = new ProductGeneralRepository(appSettings);
 }
Exemple #2
0
 public ExtentionService(AppSettings appSettings)
 {
     _appSettings         = appSettings;
     _proceduceAiService  = new ProceduceAiService(appSettings);
     _templatesRepository = new TemplatesRepository(appSettings);
 }