Example #1
0
 public ComputadorController(IComputadorService computadorService, IGrupoService grupoService, IComandoService comandoService, IMapper mapper)
 {
     _computadorService = computadorService;
     _grupoService      = grupoService;
     _mapper            = mapper;
     _comandoService    = comandoService;
 }
Example #2
0
 public FTCappCrl()
 {
     _suiteService     = new SuiteService();
     _casoService      = new CasoService();
     _transacaoService = new TransacaoService();
     _comandoService   = new ComandoService();
     _elementoService  = new ElementoService();
 }
Example #3
0
 public ComandoController(IComandoService comandoService, IMapper mapper)
 {
     _mapper         = mapper;
     _comandoService = comandoService;
 }
Example #4
0
 public ComandoController(IComandoService comandoService)
 {
     _comandoService = comandoService;
 }