public GoogleBaseControllerTests()
        {
            _configurationProvider = A.Fake <IConfigurationProvider>();
            _googleBaseSettings    = A.Fake <GoogleBaseSettings>();
            _googleBaseManager     = A.Fake <IGoogleBaseManager>();
            _productVariantService = A.Fake <IProductVariantService>();
            _optionService         = A.Fake <IOptionService>();

            _googleBaseController = new GoogleBaseController(_configurationProvider, _googleBaseSettings, _optionService,
                                                             _productVariantService, _googleBaseManager);
        }
Пример #2
0
        public GoogleBaseControllerTests()
        {
            _configurationProvider = A.Fake<IConfigurationProvider>();
            _googleBaseSettings = A.Fake<GoogleBaseSettings>();
            _googleBaseManager = A.Fake<IGoogleBaseManager>();
            _productVariantService = A.Fake<IProductVariantService>();
            _optionService = A.Fake<IOptionService>();

            _googleBaseController = new GoogleBaseController(_configurationProvider, _googleBaseSettings, _optionService,
                _productVariantService,_googleBaseManager);
        }
Пример #3
0
 public GoogleBaseController(IConfigurationProvider configurationProvider,
                             GoogleBaseSettings googleBaseSettings,
                             IOptionService optionService,
                             IProductVariantService productVariantService,
                             IGoogleBaseManager googleBaseManager)
 {
     _configurationProvider = configurationProvider;
     _googleBaseSettings    = googleBaseSettings;
     _optionService         = optionService;
     _productVariantService = productVariantService;
     _googleBaseManager     = googleBaseManager;
 }
Пример #4
0
 public GoogleBaseFeedController(IGoogleBaseManager googleBaseManager)
 {
     _googleBaseManager = googleBaseManager;
 }