public SystemTenantRegistrationService(ISystemSubscriptionService systemSubscriptionService, ISystemLookupItemService systemLookupItemService, ISystemTenantManager systemTenantManager, IConfiguration configuration, IWebHostEnvironment webHostEnvironment) : base(configuration, webHostEnvironment)
 {
     _systemLookupItemService   = systemLookupItemService;
     _systemSubscriptionService = systemSubscriptionService;
     _systemTenantManager       = systemTenantManager;
     _configuration             = configuration;
     _webHostEnvironment        = webHostEnvironment;
 }
Esempio n. 2
0
 /// <summary>
 /// Service Desk constructor.
 /// </summary>
 /// <param name="systemTenantService"></param>
 public TokenController(ISystemTenantManager systemTenantService)
 {
     _systemTenantsService = systemTenantService;
 }