コード例 #1
0
        // GET: Categories/Category
        public ActionResult Index()
        {
            var cp    = new ASF.UI.Process.CategoryProcess();
            var lista = cp.SelectList();

            return(View(lista));
        }
コード例 #2
0
        // GET: Category/Category
        public ActionResult Index()
        {
            logger.Info("Start index method");
            var resp = categoryProcess.SelectList();

            return(View("view", resp));
        }
コード例 #3
0
        //
        // GET: /Category/Category/
        public ActionResult Index()
        {
            var resp = categoryProcess.SelectList();

            return(View(resp));
        }