Example #1
0
 public ApiDefaultController(IProvinciaService provinciaService, ILocalidadService localidadService,
                             IAseguradoraService aseguradoraService, IConsultorioService consultorioService)
 {
     this.provinciaService   = provinciaService;
     this.localidadService   = localidadService;
     this.aseguradoraService = aseguradoraService;
     this.consultorioService = consultorioService;
 }
Example #2
0
 public ConsultorioController(IConfiguration configuration, IConsultorioService consultorioService)
 {
     _configuration      = configuration;
     _consultorioService = consultorioService;
 }
 public ConsultorioController()
 {
     _consultorioService = new ConsultorioService();
 }
 public ConsultaMedicaController()
 {
     _consultaMedicaService = new ConsultaMedicaService();
     _consultorioService = new ConsultorioService();
     _consultaMedica = new ConsultaMedica();
 }
 public ConsultorioController(IConsultorioService consultorioService, IAgendaService agendaService)
 {
     this.agendaService      = agendaService;
     this.consultorioService = consultorioService;
 }
Example #6
0
 public ApiGrillaController(IAgendaService agendaService, IConsultorioService consultorioService, IProfesionalService profesionalService)
 {
     this.agendaService      = agendaService;
     this.consultorioService = consultorioService;
     this.profesionalService = profesionalService;
 }