Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/QueryController.cs @ 5910

Last change on this file since 5910 was 5910, checked in by cfleisch, 14 years ago

#1439 Query tool as plugin implemented, added submenu items

File size: 1.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6//using HLWebOKBAdminPlugin.ViewModels;
7using System.Web.Security;
8using System.ServiceModel.Security;
9//using HLWebPluginHost.OKBService;
10using System.Diagnostics;
11using HLWebPluginHost.Models;
12using HLWebOKBQueryPlugin.OKBQueryService;
13
14namespace HLWebOKBQueryPlugin.Controllers
15{
16    public class QueryController : Controller
17    {
18        public ActionResult Index()
19        {
20            return View();
21        }
22
23        public ActionResult Menu()
24        {
25            return View();
26        }
27
28        public ActionResult Filter()
29        {
30            QueryModel qm = new QueryModel();
31            Session["SelectedSubMenu"] = "Filter";
32            return View(qm);
33        }
34
35        public ActionResult Results()
36        {
37            QueryModel qm = new QueryModel();
38            Session["SelectedSubMenu"] = "Results";
39            return View(qm);
40        }
41    }
42}
Note: See TracBrowser for help on using the repository browser.