Ejemplo n.º 1
0
    public ActionResult Index()
    {
        var model = new SystemRoleList
        {
            List = new[]
            {
                new SystemRole {
                    Id = 1, Name = "role 1"
                },
                new SystemRole {
                    Id = 2, Name = "role 2"
                },
                new SystemRole {
                    Id = 3, Name = "role 3"
                },
            }
        };

        return(View(model));
    }
Ejemplo n.º 2
0
 public ActionResult Index(SystemRoleList model)
 {
     return(Content("thanks for submitting"));
 }