コード例 #1
0
 public ActionResult TestPolicy()
 {
     try
     {
         ViewBag.TestCategoryId = new SelectList(_iCommonManager.GetAllTestCategories(), "Id", "Name");
         return(View());
     }
     catch (Exception exception)
     {
         Log.WriteErrorLog(exception);
         return(PartialView("_ErrorPartial", exception));
     }
 }