public FollowerPermissionRepository(EndContext endContext)
 {
     _context = endContext;
 }
예제 #2
0
 public UserRepository(EndContext context, UserManager <AppUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
예제 #3
0
 public DataInitializer(EndContext endContext, RoleManager <AppRole> roleManager)
 {
     _context     = endContext;
     _roleManager = roleManager;
 }
예제 #4
0
 public FollowingRequestRepository(EndContext context)
 {
     _context = context;
 }