public DiagnosticoService(IDiagnosticoRepository DiagnosticoRepository, ICorrelativoRepository correlativoRepository, IMapper mapper, IOptions <FileServerSettings> fileServerSettings)
 {
     _IDiagnosticoRepository = DiagnosticoRepository;
     _ICorrelativoRepository = correlativoRepository;
     _Mapper             = mapper;
     _fileServerSettings = fileServerSettings;
 }
 public DiagnosticoTratamientoService(IDiagnosticoRepository diagnosticoRepository, ITratamientoRepository tratamientoRepository,
                                      IMaterialSoportePlantarRepository materialSoportePlantarRepository)
 {
     _diagnosticoRepository            = diagnosticoRepository;
     _tratamientoRepository            = tratamientoRepository;
     _materialSoportePlantarRepository = materialSoportePlantarRepository;
 }
Exemplo n.º 3
0
 public MedicoServiceImpl(IMedicoRepository medRepo, IPacienteRepository pacRepo,
                          ICitaRepository citaRepo, IDiagnosticoRepository diagRepo)
 {
     this.medRepo  = medRepo;
     this.pacRepo  = pacRepo;
     this.citaRepo = citaRepo;
     this.diagRepo = diagRepo;
 }
Exemplo n.º 4
0
 public DiagnosticoServiceImpl(IDiagnosticoRepository diagRepo, ICitaRepository citaRepo)
 {
     this.diagRepo = diagRepo;
     this.citaRepo = citaRepo;
 }
Exemplo n.º 5
0
 public DiagnosticoService(IDiagnosticoRepository repository, IMapper _mapper)
 {
     this.repository = repository;
     mapper          = _mapper;
 }