Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/29/11 10:53:02 (13 years ago)
Author:
msammer
Message:

#1446 Changed RunCollectionTable for using it in the MVC-pluginhost. Changes for using real Run-objects in the table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/QueryController.cs

    r5919 r6076  
    1313using HLWebOKBQueryPlugin.Helpers;
    1414
    15 namespace HLWebOKBQueryPlugin.Controllers
    16 {
    17     public class QueryController : Controller
    18     {
    19         public ActionResult Index()
    20         {
     15namespace HLWebOKBQueryPlugin.Controllers {
     16    public class QueryController : Controller {
     17        public ActionResult Index() {
    2118            return View();
    2219        }
    2320
    24         public ActionResult Menu()
    25         {
     21        public ActionResult Menu() {
    2622            return View();
    2723        }
    2824
    29         public ActionResult Filter()
    30         {
     25        public ActionResult Filter() {
    3126            QueryServiceClient client = Query.GetClientFactory();
    3227
     
    3732        }
    3833
    39         public ActionResult Results()
    40         {
     34        public ActionResult Results() {
     35            QueryServiceClient client = Query.GetClientFactory();
     36
    4137            QueryModel qm = new QueryModel();
    4238            Session["SelectedSubMenu"] = "Results";
    4339            return View(qm);
    4440        }
     41
     42        public ActionResult RunCollectionTable() {
     43            return View();
     44        }
    4545    }
    4646}
Note: See TracChangeset for help on using the changeset viewer.