Esempio n. 1
0
 public AccountController(UserManager <User> userManager, ITempService tempService,
                          SignInManager <User> signInManager, IUserRegistrationService userRegistrationService,
                          ILogService logService, IConfiguration configuration)
 {
     _userManager             = userManager;
     _signInManager           = signInManager;
     _tempService             = tempService;
     _userRegistrationService = userRegistrationService;
     _logService    = logService;
     _configuration = configuration;
 }
Esempio n. 2
0
 public AuthService(HttpClient httpClient,
                    AuthenticationStateProvider authenticationStateProvider,
                    ILocalStorageService localStorage, ITempService tempService,
                    IUserRegistrationService userRegistrationService, UserManager <User> userManager,
                    ILogService logService)
 {
     _httpClient = httpClient;
     _authenticationStateProvider = authenticationStateProvider;
     _localStorage            = localStorage;
     _tempService             = tempService;
     _userRegistrationService = userRegistrationService;
     _userManager             = userManager;
     _logService = logService;
 }
Esempio n. 3
0
 public HomeController(IHostingEnvironment environment)
 {
     _hostingEnvironment = environment;
     this._tempService   = new TempService(new FileService(), new TempEngine(_hostingEnvironment));
     this._fileService   = new FileService();
 }
 public LemlistIntegrationService(ITempService tempService)
 {
     _tempService = tempService;
 }
Esempio n. 5
0
 public TempController(ITempService tempService)
 {
     _tempService = tempService;
 }
 public RoadAndAirTempController(ITempService tempService)
 {
     _tempService = tempService;
 }
Esempio n. 7
0
 public HunterIntegrationService(ApiContext context, ITempService tempService)
 {
     db           = context;
     _tempService = tempService;
 }