Exemple #1
0
 public UserController(ITaskTodoRepository repository, UserManager <AppUser> userManager,
                       SignInManager <AppUser> singnInManager,
                       DataContext data)
 {
     _data           = data;
     _singnInManager = singnInManager;
     _userManager    = userManager;
 }
 public TaskController(ITaskTodoRepository repository)
 {
     _repo = repository;
 }