public ActionResult Create(BrandViewModel brandViewModel)
 {
     try
     {
         // TODO: Add insert logic here
         BrandServices.Create(brandViewModel);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }