Example #1
0
        public void InformarAtendente(Atendente atendente)
        {
            if (atendente == null)
            {
                throw new ArgumentNullException(nameof(atendente));
            }

            Atendente = atendente;
        }
Example #2
0
        public Agendamento AgendarExame(Atendente atendente, Paciente paciente, Medico medico, IList <Exame> exames)
        {
            InformarAtendente(atendente);
            InformarMedico(medico);
            InformarPaciente(paciente);
            foreach (var exame in exames)
            {
                ((List <Exame>)Exames).Add(exame);
            }

            return(this);
        }
Example #3
0
        public Agendamento AgendarExame(Atendente atendente, Paciente paciente, Medico medico, IList<Exame> exames)
        {
            InformarAtendente(atendente);
            InformarMedico(medico);
            InformarPaciente(paciente);
            foreach (var exame in exames)
            {
                ((List<Exame>)Exames).Add(exame);
            }

            return this;
        }
Example #4
0
        public void InformarAtendente(Atendente atendente)
        {
            if (atendente == null) throw new ArgumentNullException(nameof(atendente));

            Atendente = atendente;
        }