示例#1
0
 public ViewResult Index()
 {
     try
     {
         List <ViewOBISSet> v = _obisSetRepository.GetObisSetList(GetUserId());
         return(View(v));
     }
     catch (Exception e)
     {
         ExceptionMessageToViewBag(e);
         return(View("Error"));
     }
 }