예제 #1
0
 public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ApplicationDbContext context, CosmoTrackDbContext cosmotrack)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
     _cosmotrack    = cosmotrack;
 }
예제 #2
0
        public FollowsController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager, ApplicationDbContext context2)
        {
            _context = context;

            _userManager = userManager;

            _context2 = context2;
        }
예제 #3
0
        public ProfilesController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager, ApplicationDbContext context2, IHostingEnvironment he)
        {
            _context = context;

            _userManager = userManager;

            _context2 = context2;

            _he = he;
        }
예제 #4
0
 public ReviewsController(CosmoTrackDbContext context)
 {
     _context = context;
 }
예제 #5
0
        public UserJournalsController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager)
        {
            _context = context;

            _userManager = userManager;
        }