Пример #1
0
        public ActionResult Create([Bind(Include = "Id,Name,Address")] StoreDto store)
        {
            if (ModelState.IsValid)
            {
                _storeAppService.CreateStore(store);

                return(RedirectToAction("Index"));
            }

            return(View(store));
        }