示例#1
0
        /// <summary>
        /// Gets the name of a NaceActivity (incl. code) based on the LOV_Id
        /// </summary>
        public static string NaceActivityName(int lov_id)
        {
            LOV_NACEACTIVITY a    = ListOfValues.GetNaceActicvity(lov_id);
            string           code = a != null ? a.Code : String.Empty;

            return(NaceActivityName(code));
        }