コード例 #1
0
 public GoogleBaseManagerTests()
 {
     _productVariantService     = A.Fake <IProductVariantService>();
     _googleBaseShippingService = A.Fake <IGoogleBaseShippingService>();
     _getStockRemainingQuantity = A.Fake <IGetStockRemainingQuantity>();
     _googleBaseManager         = new GoogleBaseManager(Session, _productVariantService, _googleBaseShippingService, _getStockRemainingQuantity);
 }
コード例 #2
0
 public GoogleBaseManagerTests()
 {
     _googleBaseShippingService = A.Fake <IGoogleBaseShippingService>();
     _getStockRemainingQuantity = A.Fake <IGetStockRemainingQuantity>();
     _googleBaseManager         = new GoogleBaseManager(Session, _googleBaseShippingService, _getStockRemainingQuantity,
                                                        _productPricingMethod);
 }
コード例 #3
0
 public GoogleBaseManagerTests()
 {
     _productVariantService = A.Fake<IProductVariantService>();
     _googleBaseShippingService = A.Fake<IGoogleBaseShippingService>();
     _getStockRemainingQuantity = A.Fake<IGetStockRemainingQuantity>();
     _googleBaseManager = new GoogleBaseManager(Session, _productVariantService, _googleBaseShippingService,_getStockRemainingQuantity);
 }
コード例 #4
0
ファイル: GoogleBaseManager.cs プロジェクト: neozhu/Ecommerce
 public GoogleBaseManager(ISession session, IProductVariantService productVariantService,
     IGoogleBaseShippingService googleBaseShippingService,IGetStockRemainingQuantity getStockRemainingQuantity)
 {
     _session = session;
     _productVariantService = productVariantService;
     _googleBaseShippingService = googleBaseShippingService;
     _getStockRemainingQuantity = getStockRemainingQuantity;
 }
コード例 #5
0
 public GoogleBaseManager(ISession session, IProductVariantService productVariantService,
                          IGoogleBaseShippingService googleBaseShippingService, IGetStockRemainingQuantity getStockRemainingQuantity)
 {
     _session = session;
     _productVariantService     = productVariantService;
     _googleBaseShippingService = googleBaseShippingService;
     _getStockRemainingQuantity = getStockRemainingQuantity;
 }
コード例 #6
0
 public GoogleBaseManager(ISession session,
                          IGoogleBaseShippingService googleBaseShippingService,
                          IGetStockRemainingQuantity getStockRemainingQuantity, IProductPricingMethod productPricingMethod)
 {
     _session = session;
     _googleBaseShippingService = googleBaseShippingService;
     _getStockRemainingQuantity = getStockRemainingQuantity;
     _productPricingMethod      = productPricingMethod;
 }