public SEGUIMIENTO ObtenerSeguimientoPorFecha(DateTime diahoy, int id) { var seguimiento = new SEGUIMIENTO(); try { using (var db = new ModeloGGYM()) { seguimiento = db.SEGUIMIENTO .Where(x => x.FECHA.Value == diahoy && x.ID_USUARIO == id) .SingleOrDefault(); } } catch (Exception) { throw; } return(seguimiento); }
public SEGUIMIENTO ObtenerSeguimiento(int id) { var seguimiento = new SEGUIMIENTO(); try { using (var db = new ModeloGGYM()) { seguimiento = db.SEGUIMIENTO .Where(x => x.ID_SEGUIMIENTO == id) .SingleOrDefault(); } } catch (Exception) { throw; } return(seguimiento); }