public ActionResult Create()
 {
     ViewBag.TestCategoryId      = new SelectList(_rep.GetCategories(), "Id", "Name");
     ViewBag.AcredetationLevelId = new SelectList(_rep.GetAcredetationLevels(), "Id", "Level");
     ViewBag.TypeId = new SelectList(_rep.GetTestTypes(), "Id", "Type");
     return(View());
 }