Ejemplo n.º 1
0
        public ActionResult AddShop(string nameShop, int idTypeOfShop, int idAddress)
        {
            _shopModel.AddShop(new ShopVM()
            {
                NameShop     = nameShop,
                IdTypeOfShop = idTypeOfShop,
                IdAddress    = idAddress
            });

            return(Redirect(nameof(LotManagment)));
        }