Beispiel #1
0
 public ProfileController(TunrecruteContext db, SignInManager <User> signInManager, IWebHostEnvironment hostEnvironment, IToastNotification toastNotification)
 {
     this.db                = db;
     this.signInManager     = signInManager;
     this.hostEnvironment   = hostEnvironment;
     this.toastNotification = toastNotification;
 }
 public CandidacyController(TunrecruteContext db, SignInManager <User> signInManager, IToastNotification toastNotification)
 {
     this.db                = db;
     this.signInManager     = signInManager;
     this.toastNotification = toastNotification;
 }
 public WorkExperienceController(TunrecruteContext db, SignInManager <User> signInManager, IToastNotification toastNotification)
 {
     this.db                = db;
     this.signInManager     = signInManager;
     this.toastNotification = toastNotification;
 }
Beispiel #4
0
 public AdvertisementController(TunrecruteContext db, SignInManager <User> signInManager, IToastNotification toastNotification)
 {
     this.db                = db;
     this.signInManager     = signInManager;
     this.toastNotification = toastNotification;
 }
Beispiel #5
0
 public HomeController(ILogger <HomeController> logger, TunrecruteContext db)
 {
     _logger = logger;
     this.db = db;
 }