public PaymentsFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.PaymentsToDelete = new List <Payment>();
     this.customerFixture  = new CustomerFixture(serviceProviderFixture);
     this.typeFixture      = new TypeFixture(serviceProviderFixture);
     this.statesFixture    = new StatesFixture(serviceProviderFixture);
 }
예제 #2
0
 public InventoryFixture() : base()
 {
     this.InventoryEntries = new List <InventoryEntry>();
     this.productFixture   = new ProductFixture();
     this.channelFixture   = new ChannelFixture();
     this.typeFixture      = new TypeFixture();
 }
예제 #3
0
 public InventoryFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.InventoryEntries = new List <InventoryEntry>();
     this.productFixture   = new ProductFixture(serviceProviderFixture);
     this.channelFixture   = new ChannelFixture(serviceProviderFixture);
     this.typeFixture      = new TypeFixture(serviceProviderFixture);
 }
예제 #4
0
 public ProductFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.ProductsToDelete   = new List <Product>();
     this.productTypeFixture = new ProductTypeFixture(serviceProviderFixture);
     this.categoryFixture    = new CategoryFixture(serviceProviderFixture);
     this.taxCategoryFixture = new TaxCategoryFixture(serviceProviderFixture);
     this.typeFixture        = new TypeFixture(serviceProviderFixture);
     this.statesFixture      = new StatesFixture(serviceProviderFixture);
 }
예제 #5
0
 public OrdersFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.OrdersToDelete  = new List <Order>();
     this.cartFixture     = new CartFixture(serviceProviderFixture);
     this.productFixture  = new ProductFixture(serviceProviderFixture);
     this.customerFixture = new CustomerFixture(serviceProviderFixture);
     this.channelFixture  = new ChannelFixture(serviceProviderFixture);
     this.statesFixture   = new StatesFixture(serviceProviderFixture);
     this.typeFixture     = new TypeFixture(serviceProviderFixture);
     this.paymentsFixture = new PaymentsFixture(serviceProviderFixture);
     this.projectFixture  = new ProjectFixture(serviceProviderFixture);
 }
 public CartFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.CartToDelete           = new List <Cart>();
     this.customerFixture        = new CustomerFixture(serviceProviderFixture);
     this.productFixture         = new ProductFixture(serviceProviderFixture);
     this.shippingMethodsFixture = new ShippingMethodsFixture(serviceProviderFixture);
     this.taxCategoryFixture     = new TaxCategoryFixture(serviceProviderFixture);
     this.discountCodeFixture    = new DiscountCodeFixture(serviceProviderFixture);
     this.customerGroupFixture   = new CustomerGroupFixture(serviceProviderFixture);
     this.typeFixture            = new TypeFixture(serviceProviderFixture);
     this.shoppingListFixture    = new ShoppingListFixture(serviceProviderFixture);
     this.paymentsFixture        = new PaymentsFixture(serviceProviderFixture);
     this.projectFixture         = new ProjectFixture(serviceProviderFixture);
 }
 public CustomerGroupFixture(ServiceProviderFixture serviceProviderFixture) : base(serviceProviderFixture)
 {
     this.CustomerGroupsToDelete = new List <CustomerGroup>();
     this.typeFixture            = new TypeFixture(serviceProviderFixture);
 }
예제 #8
0
 public CustomerGroupFixture() : base()
 {
     this.CustomerGroupsToDelete = new List <CustomerGroup>();
     this.typeFixture            = new TypeFixture();
 }