コード例 #1
0
 public ProfileController(IProfileFunctions profileFunctions, DbHelpers dbhelpers, ApplicationUserManager userManager, ApplicationSignInManager signInManager)
 {
     _dbhelpers        = dbhelpers;
     _profileFunctions = profileFunctions;
     UserManager       = userManager;
     SignInManager     = signInManager;
 }
コード例 #2
0
 public ProfileController()
 {
     _profileFunctions = new ProfileFunctions(new ForumDbContext(), new ApplicationDbContext());
 }