Exemple #1
0
        //public static IEnumerable<ZipCountyView> GetSubStateRegionForState(string StateFIPS)
        //{
        //    List<ZipCountyView> ZipCodes = new List<ZipCountyView>();
        //    System.Data.IDataReader reader = LookupDAL.GetZipCodeOfCountyLocationForStateFips(StateFIPS);
        //    while (reader.Read())
        //    {
        //        ZipCodes.Add(new ZipCountyView(reader.GetString(0)));
        //    }
        //    return ZipCodes;
        //}

        public static string GetStateFipsCodeByShortName(string ShortName)
        {
            return(LookupDAL.GetStateFipsCodeByShortName(ShortName));
        }