示例#1
0
        private static EventoDeportivo ConvertToEventoDeportivo(DataRow dr)
        {
            EventoDeportivo ed = new EventoDeportivo();

            if (dr != null)
            {
                ed.EventoDeportivoId = Convert.ToInt32(dr["EventoDeportivoId"]);
                ed.Nombre            = Convert.ToString(dr["Nombre"]);
                //ed.Gestion = Convert.ToInt32(dr["Gestion"]);
                ed.Ubicacion = Convert.ToString(dr["Ubicacion"]);
            }
            return(ed);
        }
示例#2
0
        public static List <EventoDeportivo> GetEventoDeportivos()
        {
            List <EventoDeportivo> led = new List <EventoDeportivo>();
            DBTransaction          db  = new DBTransaction();
            DataTable dt = db.GetDataView("[EventosDeportivo]");

            foreach (DataRow dr in dt.Rows)
            {
                EventoDeportivo ed = ConvertToEventoDeportivo(dr);
                led.Add(ed);
            }
            return(led);
        }
示例#3
0
        public static List <EventoDeportivo> GetEventosDeportivosByGestion(int gestion)
        {
            List <EventoDeportivo> led = new List <EventoDeportivo>();
            DBTransaction          db  = new DBTransaction();
            DataTable dt = db.GetDataView(string.Format("[EventosDeportivo] WHERE Gestion = {0}", gestion));

            foreach (DataRow dr in dt.Rows)
            {
                EventoDeportivo ed = ConvertToEventoDeportivo(dr);
                led.Add(ed);
            }
            return(led);
        }