- Timestamp:
- 04/29/11 10:53:02 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/QueryController.cs
r5919 r6076 13 13 using HLWebOKBQueryPlugin.Helpers; 14 14 15 namespace HLWebOKBQueryPlugin.Controllers 16 { 17 public class QueryController : Controller 18 { 19 public ActionResult Index() 20 { 15 namespace HLWebOKBQueryPlugin.Controllers { 16 public class QueryController : Controller { 17 public ActionResult Index() { 21 18 return View(); 22 19 } 23 20 24 public ActionResult Menu() 25 { 21 public ActionResult Menu() { 26 22 return View(); 27 23 } 28 24 29 public ActionResult Filter() 30 { 25 public ActionResult Filter() { 31 26 QueryServiceClient client = Query.GetClientFactory(); 32 27 … … 37 32 } 38 33 39 public ActionResult Results() 40 { 34 public ActionResult Results() { 35 QueryServiceClient client = Query.GetClientFactory(); 36 41 37 QueryModel qm = new QueryModel(); 42 38 Session["SelectedSubMenu"] = "Results"; 43 39 return View(qm); 44 40 } 41 42 public ActionResult RunCollectionTable() { 43 return View(); 44 } 45 45 } 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.