コード例 #1
0
 public SeedingService(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #2
0
 public ChamadoService(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #3
0
 public DepartamentoService(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #4
0
 public HistoricoChamadoService(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #5
0
 public UsuariosController(UsuarioService usuarioService, DepartamentoService departamentoService, HelpDeskMvcContext context)
 {
     _usuarioService      = usuarioService;
     _departamentoService = departamentoService;
     _context             = context;
 }
コード例 #6
0
 public UsuarioService(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #7
0
 public DepartamentosController(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #8
0
 public ServicosController(HelpDeskMvcContext context)
 {
     _context = context;
 }
コード例 #9
0
 public InventarioService(HelpDeskMvcContext context)
 {
     _context = context;
 }