Last change
on this file since 6185 was
6076,
checked in by msammer, 14 years ago
|
#1446 Changed RunCollectionTable for using it in the MVC-pluginhost. Changes for using real Run-objects in the table
|
File size:
1.2 KB
|
Rev | Line | |
---|
[5910] | 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;
|
---|
[5919] | 13 | using HLWebOKBQueryPlugin.Helpers;
|
---|
[5910] | 14 |
|
---|
[6076] | 15 | namespace HLWebOKBQueryPlugin.Controllers {
|
---|
| 16 | public class QueryController : Controller {
|
---|
| 17 | public ActionResult Index() {
|
---|
[5910] | 18 | return View();
|
---|
| 19 | }
|
---|
| 20 |
|
---|
[6076] | 21 | public ActionResult Menu() {
|
---|
[5910] | 22 | return View();
|
---|
| 23 | }
|
---|
| 24 |
|
---|
[6076] | 25 | public ActionResult Filter() {
|
---|
[5919] | 26 | QueryServiceClient client = Query.GetClientFactory();
|
---|
| 27 |
|
---|
| 28 |
|
---|
[5910] | 29 | QueryModel qm = new QueryModel();
|
---|
| 30 | Session["SelectedSubMenu"] = "Filter";
|
---|
| 31 | return View(qm);
|
---|
| 32 | }
|
---|
| 33 |
|
---|
[6076] | 34 | public ActionResult Results() {
|
---|
| 35 | QueryServiceClient client = Query.GetClientFactory();
|
---|
| 36 |
|
---|
[5910] | 37 | QueryModel qm = new QueryModel();
|
---|
| 38 | Session["SelectedSubMenu"] = "Results";
|
---|
| 39 | return View(qm);
|
---|
| 40 | }
|
---|
[6076] | 41 |
|
---|
| 42 | public ActionResult RunCollectionTable() {
|
---|
| 43 | return View();
|
---|
| 44 | }
|
---|
[5910] | 45 | }
|
---|
| 46 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.