예제 #1
0
 public DatabaseInitializer(UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, IAccountService accountService,
                            IContactifyData data)
 {
     this.userManager    = userManager;
     this.roleManager    = roleManager;
     this.accountService = accountService;
     this.data           = data;
 }
예제 #2
0
 protected Service(IContactifyData data, UserManager <ApplicationUser> userManager)
 {
     this.Data        = data;
     this.UserManager = userManager;
 }
예제 #3
0
 public ProfileService(IContactifyData data, UserManager <ApplicationUser> userManager)
     : base(data, userManager)
 {
 }
예제 #4
0
 public AccountService(IContactifyData data, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager)
     : base(data, userManager)
 {
     this.roleManager = roleManager;
 }