예제 #1
0
 public UserController(DataRepository repository, BbBContext bbB, SignInManager <IdentityUser> signInManager)
 {
     data           = repository;
     context        = bbB;
     _signInManager = signInManager;
 }
예제 #2
0
 public DataRepository(BbBContext input)
 {
     bbBContext = input ?? throw new ArgumentException(nameof(input));
 }