public async Task <List <Doctor> > ObtenerListadoDoctores()
 {
     Datos.DoctoresDatos doctoresDatos = new Datos.DoctoresDatos();
     return(await doctoresDatos.ObtenerListadoDoctores());
 }
 public async Task <List <PacienteAsignadoViewModel> > ObtenerListadoPacientesAsignados(long idDoctor)
 {
     Datos.DoctoresDatos doctoresDatos = new Datos.DoctoresDatos();
     return(await doctoresDatos.ObtenerPacientesPorDoctor(idDoctor));
 }
 public async Task <bool> CrearDoctor(Doctor nuevoDoctor)
 {
     Datos.DoctoresDatos doctoresDatos = new Datos.DoctoresDatos();
     return(await doctoresDatos.CrearDoctor(nuevoDoctor));
 }