public BugProblemaController(DevTestesContext context, FuncionarioService funcionarioService, SprintService sprintService, ProdutoService produtoService)
 {
     _context            = context;
     _funcionarioService = funcionarioService;
     _sprintService      = sprintService;
     _produtoService     = produtoService;
 }
 public ProdutoController(DevTestesContext context)
 {
     _context = context;
 }
Example #3
0
 public ProdutoService(DevTestesContext context)
 {
     _context = context;
 }
 public BugProblemaService(DevTestesContext context)
 {
     _context = context;
 }
 public FuncionarioController(DevTestesContext context)
 {
     _context = context;
 }
 public FuncionarioService(DevTestesContext context)
 {
     _context = context;
 }
Example #7
0
 public SprintController(DevTestesContext context)
 {
     _context = context;
 }
Example #8
0
 public SprintService(DevTestesContext context)
 {
     _context = context;
 }