Esempio n. 1
0
 public TestEnvironmentCreateContext(ProductsTable productsTable, DiscountStructureTable discountStructureTable, DocumentsTable documentsTable)
 {
     Products          = productsTable;
     DiscountStructure = discountStructureTable;
     Documents         = documentsTable;
 }
Esempio n. 2
0
 public TestEnvironmentCreateContext(ITestMocks mocks)
 {
     Products          = new ProductsTable(mocks);
     DiscountStructure = new DiscountStructureTable(Products);
     Documents         = new DocumentsTable(Products, mocks);
 }