示例#1
0
        /// <summary>
        /// Action for editing a RazorView
        /// </summary>
        /// <param name="org">The Organization code for the service owner</param>
        /// <param name="service">The service code for the current service</param>
        /// <param name="edition">The edition code for the current service</param>
        /// <param name="id">The ViewName</param>
        /// <returns>The View</returns>
        public ActionResult Edit(string org, string service, string edition, string id)
        {
            string data = _viewRepository.GetView(org, service, edition, id);

            return(View(data as object));
        }