Ejemplo n.º 1
0
        public ActionResult Add(string name, string last1, string last2)
        {
            var objEdit = new OwnerViewModel
            {
                Name  = name,
                Last1 = last1,
                Last2 = last2
            };

            var model = Service.Add(objEdit);

            return(null);
        }