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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Web;
|
---|
5 | using System.Web.Mvc;
|
---|
6 | //using HLWebOKBAdminPlugin.ViewModels;
|
---|
7 | using System.Web.Security;
|
---|
8 | using System.ServiceModel.Security;
|
---|
9 | //using HLWebPluginHost.OKBService;
|
---|
10 | using System.Diagnostics;
|
---|
11 | using HLWebPluginHost.Models;
|
---|
12 | using HLWebOKBQueryPlugin.OKBQueryService;
|
---|
13 |
|
---|
14 | namespace 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.