Exemplo n.º 1
0
 public TarefasController(ITarefaItemService tarefaService)
 {
     _tarefaService = tarefaService;
 }
Exemplo n.º 2
0
 public TarefasController(ITarefaItemService tarefaService, UserManager <IdentityUser> userManager)
 {
     _tarefaService = tarefaService;
     _userManager   = userManager;
 }
Exemplo n.º 3
0
 public TarefasController(ITarefaItemService tarefaItemService, UserManager <ApplicationUser> userManager)
 {
     _tarefaItemService = tarefaItemService;
     _userManager       = userManager;
 }
Exemplo n.º 4
0
 //Dependency Injections
 public TarefasController(ITarefaItemService TarefaService)
 {
     _TarefaService = TarefaService;
 }