Exemplo n.º 1
0
 public ProductController(IGenericWorker <Product, ProductRowApiO, int> workerService) : base(workerService)
 {
 }
 public SupplierController(IGenericWorker <Supplier, SupplierRowApiO, int> workerService) : base(workerService)
 {
 }
Exemplo n.º 3
0
 public OrderDetailController(IGenericWorker <OrderDetail, OrderDetailRowApiO, int> workerService) : base(workerService)
 {
 }
Exemplo n.º 4
0
 public OrderController(IGenericWorker <Order, OrderRowApiO, int> workerService) : base(workerService)
 {
 }
 public GenericApiController(IGenericWorker <TDbModel, TApiRowModel, TDbModelKey> workerService)
 {
     this.WorkerService = workerService;
 }
Exemplo n.º 6
0
 public RegionController(IGenericWorker <Region, RegionRowApiO, int> workerService) : base(workerService)
 {
 }
 public TerritoryController(IGenericWorker <Territory, TerritoryRowApiO, int> workerService) : base(workerService)
 {
 }
Exemplo n.º 8
0
 public ShipperController(IGenericWorker <Shipper, ShipperRowApiO, int> workerService) : base(workerService)
 {
 }
 public CustomerController(IGenericWorker <Customer, CustomerRowApiO, string> workerService) : base(workerService)
 {
 }