Ejemplo n.º 1
0
 public EventController(
     IWcfPurchaseFlowService purchaseFlowService,
     IWcfEventManageService eventManageService)
 {
     _purchaseFlowService = purchaseFlowService ?? throw new ArgumentNullException(nameof(purchaseFlowService));
     _eventManageService  = eventManageService ?? throw new ArgumentNullException(nameof(eventManageService));
 }
Ejemplo n.º 2
0
 public PurchaseController(IWcfPurchaseFlowService purchaseFlowService)
 {
     _purchaseFlowService = purchaseFlowService ?? throw new ArgumentNullException(nameof(purchaseFlowService));
 }