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