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