Exemplo n.º 1
0
 public CandidateController(RejoinDbContext context, Microsoft.AspNetCore.Hosting.IWebHostEnvironment hosting, IAuth auth, IRelativeTime relativetime) : base(context)
 {
     _relativetime = relativetime;
     _auth         = auth;
     _context      = context;
     _hosting      = hosting;
 }
Exemplo n.º 2
0
 public Auth(RejoinDbContext context, IHttpContextAccessor accessor)
 {
     _context  = context;
     _accessor = accessor;
 }
Exemplo n.º 3
0
 public HomeController(ILogger <HomeController> logger, RejoinDbContext context) : base(context)
 {
     _context = context;
     _logger  = logger;
 }
Exemplo n.º 4
0
 public ResumeController(RejoinDbContext context, Microsoft.AspNetCore.Hosting.IWebHostEnvironment hosting, IAuth auth) : base(context)
 {
     _auth    = auth;
     _context = context;
     _hosting = hosting;
 }
Exemplo n.º 5
0
 public BaseController(RejoinDbContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public RelativeTime(RejoinDbContext context)
 {
     _context = context;
 }