示例#1
0
 public EvolucionController(IApCardiovascularService apCardioService,
                            IApRespiratorioService apRespService,
                            IInfectologicoService infectoService,
                            ISNCService sncService,
                            IHMNService hmnService,
                            IHematologicoService hematologicoService,
                            IFichaPacienteService fichaPacienteService,
                            ICirugiaService cirugiaService)
 {
     _apCardioService      = apCardioService;
     _apRespService        = apRespService;
     _infectoService       = infectoService;
     _sncService           = sncService;
     _hmnService           = hmnService;
     _hematologicoService  = hematologicoService;
     _fichaPacienteService = fichaPacienteService;
     _cirugiaService       = cirugiaService;
 }
 public PacienteController(IFichaPacienteService fichaPacienteService,
                           ICamaService camaService)
 {
     _fichaPacienteService = fichaPacienteService;
     _camaService          = camaService;
 }