public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ApplicationDbContext context, CosmoTrackDbContext cosmotrack) { _userManager = userManager; _signInManager = signInManager; _context = context; _cosmotrack = cosmotrack; }
public FollowsController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager, ApplicationDbContext context2) { _context = context; _userManager = userManager; _context2 = context2; }
public ProfilesController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager, ApplicationDbContext context2, IHostingEnvironment he) { _context = context; _userManager = userManager; _context2 = context2; _he = he; }
public ReviewsController(CosmoTrackDbContext context) { _context = context; }
public UserJournalsController(CosmoTrackDbContext context, UserManager <ApplicationUser> userManager) { _context = context; _userManager = userManager; }