Esempio n. 1
0
        public async Task AdicionarPacienteAsync(Paciente paciente)
        {
            try
            {
                if (paciente == null)
                {
                    return;
                }

                await _repository.AdicionarPacienteAsync(paciente);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }