public async Task <bool> NovoAtendimento(Atendimento atendimento) { try { _context.Add(atendimento); _context.SaveChanges(); return(true); } catch (Exception ex) { return(false); } }
public async Task <bool> NovoPaciente(Paciente paciente) { try { _context.Add(paciente); _context.SaveChanges(); return(true); } catch (Exception ex) { return(false); } }