Esempio n. 1
0
 public NotificacionService(IHubContext <NotificacionHub, INotificacionClient> hubContext, INotificacionRepository repository, IIdentityService identityService, ILogger log)
 {
     _hubContext      = hubContext ?? throw new ArgumentNullException(nameof(hubContext));
     _repository      = repository ?? throw new ArgumentNullException(nameof(repository));
     _identityService = identityService ?? throw new ArgumentNullException(nameof(identityService));
     _log             = log ?? throw new ArgumentNullException(nameof(log));
 }
Esempio n. 2
0
 public CapturaClienteBussiness()
 {
     repositorioRepository     = new CapturaClienteRepository();
     clienteRepository         = new ClienteRepository();
     registroClienteRepository = new RegistroClienteRepository();
     notificacionRepository    = new NotificacionRepository();
 }
Esempio n. 3
0
 public TratamientoService(ITratamientoRepository tratamientoRepository,
                           ISolicitudTratamientoRepository solicitudTratamientoRepository,
                           INotificacionRepository notificacionRepository)
 {
     this.tratamientoRepository          = tratamientoRepository;
     this.solicitudTratamientoRepository = solicitudTratamientoRepository;
     this.notificacionRepository         = notificacionRepository;
 }
Esempio n. 4
0
 public EvolucionService(IEvolucionRepository evolucionRepository,
                         IPacienteRepository pacienteRepository,
                         INotificacionRepository notificacionRepository)
 {
     this.evolucionRepository    = evolucionRepository;
     this.pacienteRepository     = pacienteRepository;
     this.notificacionRepository = notificacionRepository;
 }
Esempio n. 5
0
 public NotificacionService(INotificacionRepository notificacionRepository,
                            IMedicionRepository medicionRepository,
                            IIndicadorRepository indicadorRepository,
                            IIndicadorAutomaticoService indicadorAutomaticoService,
                            IPersonaRepository personaRepository)
 {
     this.NotificacionRepository     = notificacionRepository;
     this.MedicionRepository         = medicionRepository;
     this.IndicadorRepository        = indicadorRepository;
     this.IndicadorAutomaticoService = indicadorAutomaticoService;
     this.PersonaRepository          = personaRepository;
 }
Esempio n. 6
0
 public CitaService(ICitaRepository CitaRepository, IPacienteRepository PacienteRepository, ITipoAtencionRepository tipoAtencionRepository,
                    IDisponibilidadRepository disponibilidadRepository, IHorarioDescartadoRepository horarioDescartadoRepository,
                    IEspecialistaRepository especialistaRepository, INotificacionRepository notificacionRepository)
 {
     this.CitaRepository              = CitaRepository;
     this.PacienteRepository          = PacienteRepository;
     this.tipoAtencionRepository      = tipoAtencionRepository;
     this.disponibilidadRepository    = disponibilidadRepository;
     this.horarioDescartadoRepository = horarioDescartadoRepository;
     this.especialistaRepository      = especialistaRepository;
     this.notificacionRepository      = notificacionRepository;
 }
 public NotificacionAppService()
 {
     _NotificacionRepository = new NotificacionRepository();
 }
 public NotificacionService(INotificacionRepository NotificacionRepository)
 {
     this.NotificacionRepository = NotificacionRepository;
 }
 public NotificacionBusiness()
 {
     notificacion = new NotificacionRepository();
 }