Esempio n. 1
0
        // GET: Events
        public ActionResult Index()
        {
            var t     = new Models.DICHVU_MODEL();
            var model = t.get1TienIch();

            return(View(model));
        }
Esempio n. 2
0
        public ActionResult Details()
        {
            string str   = Request.QueryString["Id"];
            int    id    = Convert.ToInt32(str);
            var    t     = new Models.DICHVU_MODEL();
            var    model = t.getDetailTienIch(id);

            return(View(model));
        }