public NegotiationController(
     IProductService productService,
     INegotiationService negotiationService,
     IValidationWrapper wrapper)
 {
     _ProductService     = productService;
     _NegotiationService = negotiationService;
     _ValidationWrapper  = wrapper;
 }
Пример #2
0
 public AckTransceiverMetadataHandler(INegotiationService negotiationService)
 {
     _negotiationService = negotiationService
                           ?? throw new System.ArgumentNullException(nameof(negotiationService));
 }
Пример #3
0
 public TransceiverMetadataUpdatedEventObserver(INegotiationService negotiationService)
 {
     _negotiationService = negotiationService
                           ?? throw new ArgumentNullException(nameof(negotiationService));
 }
Пример #4
0
 public OfferHandler(INegotiationService negotiationService)
 {
     _negotiationService = negotiationService
                           ?? throw new ArgumentNullException(nameof(negotiationService));
 }
Пример #5
0
 public NegotiationController(IEmployeeService employeeService, INegotiationService negotiationService)
     : base(employeeService)
 {
     _employeeService    = employeeService;
     _negotiationService = negotiationService;
 }
Пример #6
0
        public NegotiationController(INegotiationService NegotiationService)

        {
            _NegotiationService = NegotiationService;
        }