Ejemplo n.º 1
0
 public OrderController(IServiceAgent serviceAgent, ITransactionIndexerServiceAgent txAgent)
 {
     _service = serviceAgent;
     _txAgent = txAgent;
 }
 public SupplierController(IServiceAgent serviceAgent, ITransactionIndexerServiceAgent txAgent, IBusinessLogicLayer businessLayer)
 {
     _businessLogicLayer = businessLayer;
     _service            = serviceAgent;
     _txAgent            = txAgent;
 }