-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomeController.cs
62 lines (59 loc) · 1.84 KB
/
HomeController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ParameterEditorAspNetMvcExample.Controllers {
public class HomeController : Controller {
public ActionResult Index() {
return View();
}
public ActionResult Designer() {
Models.ReportDesignerModel model = new Models.ReportDesignerModel();
return View(model);
}
public ActionResult Viewer() {
return View();
}
// Create an Employee list and serialize it to JSON.
public ActionResult ListEmployees()
{
var employees = new System.Collections.Generic.List<Employee>();
employees.Add(new Employee()
{
id = 2,
parentId = 0,
name = "Andrew Fuller",
title = "Vice President"
});
employees.Add(new Employee()
{
id = 1,
parentId = 5,
name = "Nancy Davolio",
title = "Sales Representative"
});
employees.Add(new Employee()
{
id = 3,
parentId = 5,
name = "Janet Leverling",
title = "Sales Representative"
});
employees.Add(new Employee()
{
id = 4,
parentId = 5,
name = "Margaret Peacock",
title = "Sales Representative"
});
employees.Add(new Employee()
{
id = 5,
parentId = 2,
name = "Steven Buchanan",
title = "Sales Manager"
});
return Json(employees, JsonRequestBehavior.AllowGet);
}
}
}