Ejemplo n.º 1
0
 public ProductsController(IProductsRepository productsRepository, HalloweenDBContext halloweenDBContext)
 {
     this.productsRepository = productsRepository;
     this.halloweenDBContext = halloweenDBContext;
 }
 public ProductsRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }
Ejemplo n.º 3
0
 public CustomersRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }
Ejemplo n.º 4
0
 public LineItemsRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }
 public CategoriesRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }
 public InvoicesRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }
 public StatesRepository(HalloweenDBContext halloweenDBContext)
 {
     this.halloweenDBContext = halloweenDBContext;
 }