gov.va.medora.mdws.SitesLib.getVisnsForState C# (CSharp) Method

getVisnsForState() public method

public getVisnsForState ( string stateAbbr ) : string[]
stateAbbr string
return string[]
        public string[] getVisnsForState(string stateAbbr)
        {
            if (mySession.SiteTable.VisnsByState == null)
            {
                mySession.SiteTable.parseVisnsByState(mySession.MdwsConfiguration.ResourcesPath + MdwsConstants.VISNS_BY_STATE_FILE_NAME);
            }
            return ((State)mySession.SiteTable.VisnsByState[stateAbbr.ToUpper()]).VisnIds;
        }