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; }
public MedicoServiceImpl(IMedicoRepository medRepo, IPacienteRepository pacRepo, ICitaRepository citaRepo, IDiagnosticoRepository diagRepo) { this.medRepo = medRepo; this.pacRepo = pacRepo; this.citaRepo = citaRepo; this.diagRepo = diagRepo; }
public DiagnosticoServiceImpl(IDiagnosticoRepository diagRepo, ICitaRepository citaRepo) { this.diagRepo = diagRepo; this.citaRepo = citaRepo; }
public DiagnosticoService(IDiagnosticoRepository repository, IMapper _mapper) { this.repository = repository; mapper = _mapper; }