public AtualizacaoClienteService(GerenciaProjetoContext context)
 {
     _context = context;
 }
 public TarefasClientesController(GerenciaProjetoContext context, TarefaClienteService tarefaClienteService, EmpresaService empresaService)
 {
     _context = context;
     _tarefaClienteService = tarefaClienteService;
     _empresaService       = empresaService;
 }
Ejemplo n.º 3
0
 public EmpresaService(GerenciaProjetoContext context)
 {
     _context = context;
 }
 public EmpresasController(GerenciaProjetoContext context, EmpresaService empresaService)
 {
     _context        = context;
     _empresaService = empresaService;
 }
Ejemplo n.º 5
0
 public TarefasEmpresaController(GerenciaProjetoContext context, TarefaEmpresaService tarefaEmpresaService)
 {
     _context = context;
     _tarefaEmpresaService = tarefaEmpresaService;
 }
 public TarefaClienteService(GerenciaProjetoContext context)
 {
     _context = context;
 }
 public AtualizacoesClientesController(GerenciaProjetoContext context, AtualizacaoClienteService atualizacaoClienteService)
 {
     _context = context;
     _atualizacaoClienteService = atualizacaoClienteService;
 }
Ejemplo n.º 8
0
 public VersaoService(GerenciaProjetoContext context)
 {
     _context = context;
 }
 public SistemasController(GerenciaProjetoContext context, SistemaService sistemaService)
 {
     _context        = context;
     _sistemaService = sistemaService;
 }
Ejemplo n.º 10
0
 public SistemaService(GerenciaProjetoContext context)
 {
     _context = context;
 }
Ejemplo n.º 11
0
 public VersoesController(GerenciaProjetoContext context, VersaoService versaoService)
 {
     _context       = context;
     _versaoService = versaoService;
 }