public PlanoDeSaudeController(PlanoDeSaudeService planoDeSaudeService)
 {
     this.planoDeSaudeService = planoDeSaudeService;
 }
Exemplo n.º 2
0
 public PacienteController(PacienteService pacienteService, PlanoDeSaudeService planoDeSaudeService)
 {
     this.pacienteService     = pacienteService;
     this.planoDeSaudeService = planoDeSaudeService;
 }