public ActionResult Update(int?id, BrandModel model) { if (id != null) { model = model.GetBrandById(id); } return(View(model)); }