コード例 #1
0
        public string GetStateNameByID(int stateID = -1)
        {
            tblState item = locationService.GetStateByID(stateID);

            return(item != null ? item.StateName : "Not found");
        }