Exemplo n.º 1
0
 public ProjectsController(ILoggerFactory loggerFactory, IServiceExceptionHandler serviceExceptionHandler, ICwsAccountClient accountProxy, IProjectProxy projectProxy, IFileImportProxy fileImportProxy)
     : base(loggerFactory, serviceExceptionHandler)
 {
     this.accountProxy    = accountProxy;
     this.projectProxy    = projectProxy;
     this.fileImportProxy = fileImportProxy;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 public SchedulerAuthentication(RequestDelegate next,
                                ICwsAccountClient cwsAccountClient,
                                IConfigurationStore store,
                                ILoggerFactory logger,
                                IEntitlementProxy entitlementProxy,
                                IServiceExceptionHandler serviceExceptionHandler) : base(next, cwsAccountClient, store, logger, entitlementProxy, serviceExceptionHandler)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RaptorAuthentication"/> class.
 /// </summary>
 public RaptorAuthentication(RequestDelegate next,
                             ICwsAccountClient cwsAccountClient,
                             IConfigurationStore store,
                             ILoggerFactory logger,
                             IEntitlementProxy entitlementProxy,
                             IServiceExceptionHandler serviceExceptionHandler,
                             IProjectProxy projectProxy) : base(next, cwsAccountClient, store, logger, entitlementProxy, serviceExceptionHandler)
 {
     this.projectProxy = projectProxy;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TIDAuthentication"/> class.
 /// </summary>
 public TIDAuthentication(RequestDelegate next,
                          ICwsAccountClient accountClient,
                          IConfigurationStore store,
                          ILoggerFactory logger,
                          IEntitlementProxy entitlementProxy,
                          IServiceExceptionHandler serviceExceptionHandler)
 {
     log = logger.CreateLogger <TIDAuthentication>();
     this.accountClient = accountClient;
     _next                   = next;
     this.store              = store;
     _entitlementProxy       = entitlementProxy;
     ServiceExceptionHandler = serviceExceptionHandler;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Default constructor.
 /// </summary>
 public CustomerV1Controller(ICwsAccountClient cwsAccountClient)
 {
     _cwsAccountClient = cwsAccountClient;
 }