public ActionResult Search(MovementSearchViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return View("Index", model);
            }

            throw new NotImplementedException();
        } 
Ejemplo n.º 2
0
        public ActionResult Search(MovementSearchViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return(View("Index", model));
            }

            throw new NotImplementedException();
        }