Пример #1
0
        /// <summary>
        /// The Index view for the data source page
        /// </summary>
        /// <param name="org">The Organization code for the service owner</param>
        /// <param name="service">The service code for the current service</param>
        /// <returns>Returns the data source to the index view</returns>
        public ActionResult Index(string org, string service)
        {
            IList <DataSourceModel> datasources = _dataSourceService.GetDatasources(org, service);

            return(View(datasources));
        }