// GET: Categories1/Create
 public ActionResult Create()
 {
     Category category = new Category();
     return View(category);
 }
 // GET: Categories/Create
 public ActionResult Create()
 {
     Category category = new Category();
     //set default value
     return View(category);
 }