public ActionResult Create(ProductAttribute model)
 {
     using (var context = new SiteContainer())
     {
         var pa = new ProductAttribute();
         TryUpdateModel(pa, new[] { "Title" });
         context.AddToProductAttribute(pa);
         context.SaveChanges();
     }
     return RedirectToAction("Index");
 }