public TestController(
     ISupplierApiProfileService supplierApiProfileService,
     IComponentContext componentContext)
 {
     this.SupplierApiProfileService = supplierApiProfileService;
     this.ComponentContext          = componentContext;
 }
Пример #2
0
 public TestHandler(
     ISupplierApiProfileService supplierApiProfileService,
     ITestService testService,
     IComponentContext componentContext)
 {
     this._supplierApiProfileService = supplierApiProfileService;
     this._componentContext          = componentContext;
     this._testService = testService;
 }
 public ValidateTokenHandler(
     ISupplierApiProfileService supplierApiProfileService,
     IComponentContext componentContext,
     ILifetimeScope lifetimeScope)
 {
     this._supplierApiProfileService = supplierApiProfileService;
     this._componentContext          = componentContext;
     this._lifetimeScope             = lifetimeScope;
 }
 public TestService(ISupplierRepository supplierRepository, IComponentContext componentContext, ISupplierApiProfileService supplierApiProfileService)
 {
     _supplierRepository        = supplierRepository;
     _componentContext          = componentContext;
     _supplierApiProfileService = supplierApiProfileService;
 }