示例#1
0
 public HomeController(UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager, StudentskiDomContext context, IHostingEnvironment _environment)
 {
     this.userManager   = userManager;
     this.signInManager = signInManager;
     _context           = context;
     Environment        = _environment;
 }
 public ZahtjevController(StudentskiDomContext context, UserManager <IdentityUser> userManager)
 {
     _context = context;
     StudentskiDomSingleton.getInstance().SetContext(context);
     this.userManager = userManager;
 }
 public UpravaController(StudentskiDomContext context)
 {
     _context = context;
     StudentskiDomSingleton.getInstance().SetContext(context);
 }
 public StudentController(StudentskiDomContext context)
 {
     _context = context;
 }