Ejemplo n.º 1
0
        private ActionResult GetJobList(string containerName, JobListContainerKind kind, List<JobId> list)
        {
            var model = new JobListModel()
            {
                ContainerName = containerName,
                Kind = kind,
                NestedList = list
            };

            return View(viewName: "JobList", model: model);
        }
Ejemplo n.º 2
0
        private ActionResult GetJobList(string containerName, JobListContainerKind kind, List <JobId> list)
        {
            var model = new JobListModel()
            {
                ContainerName = containerName,
                Kind          = kind,
                NestedList    = list
            };

            return(View(viewName: "JobList", model: model));
        }