Ejemplo n.º 1
0
        public v_Schools GetSchool(string fullKey, int year)
        {
            fullKey = fullKey;
            DALSchools school = new DALSchools();
            v_Schools  ds     = school.GetSchool(fullKey, year);

            return(ds);
        }
Ejemplo n.º 2
0
        public v_Schools GetSchool(string fullKey, int year)
        {
            StringBuilder sql = new StringBuilder();

            sql.AppendFormat("select * from v_Schools where fullkey like '{0}'", fullKey);
            sql.AppendFormat(" AND year = {0}", year);
            v_Schools ds = new v_Schools();

            base.GetDS(ds, sql.ToString(), ds._v_Schools.TableName);
            return(ds);
        }
Ejemplo n.º 3
0
        public string GetSchoolName(string fullKey, int year)
        {
            string    retval = string.Empty;
            v_Schools ds     = GetSchool(fullKey, year);

            if (ds._v_Schools.Rows.Count == 1)
            {
                retval = ds._v_Schools[0].Name.Trim();
            }
            return(retval);
        }