Пример #1
0
        public ActionResult Update(int?id, BrandModel model)
        {
            if (id != null)
            {
                model = model.GetBrandById(id);
            }

            return(View(model));
        }