Beispiel #1
0
 public ProductsController(
     IAddProductCommand addProductCommand,
     IGetProductCommand getProductCommand,
     IEditProductCommand editProductCommand,
     WirelessMediaTestContext wirelessMediaTestContext
     )
 {
     this.addProductCommand        = addProductCommand;
     this.getProductCommand        = getProductCommand;
     this.editProductCommand       = editProductCommand;
     this.wirelessMediaTestContext = wirelessMediaTestContext;
 }
 public EFGetProductCommand(WirelessMediaTestContext context) : base(context)
 {
 }
 protected EFGetProductsCommand(WirelessMediaTestContext context) : base(context)
 {
 }
 public EFAddProductCommand(WirelessMediaTestContext wirelessMediaTestContext) : base(wirelessMediaTestContext)
 {
 }
Beispiel #5
0
 protected EFBase(WirelessMediaTestContext context) => Context = context;