コード例 #1
0
        /// <summary>
        /// Code to fetch next availbale LV section availble under selected project
        /// </summary>
        /// <param name="strLVSection"></param>
        /// <param name="ProjectID"></param>
        /// <returns></returns>
        public string GetNewLVSection(string strLVSelection, int ProjectID)
        {
            string strnewLVSection = string.Empty;

            try
            {
                strnewLVSection = ObjDPosition.GetLVSection(strLVSelection, ProjectID);
            }
            catch (Exception ex)
            {
                throw;
            }
            return(strnewLVSection);
        }