Example #1
0
        public Section createSectionForDropdown(string code, string displayName, string codeSystem, int subSectionLevel)
        {
            var section = secPlaceholder.CreateSectionForDropdown(code, displayName, codeSystem, subSectionLevel);

            if (section == null)
            {
                throw new HttpResponseException(HttpStatusCode.NotFound);
            }
            return(section);
        }