Exemplo n.º 1
0
 public ViewResult Index()
 {
     try
     {
         List <ViewDeviceType> viewgroupList = _repository.GetDeviceTypeList(GetUserId(), null);
         return(View(viewgroupList));
     }
     catch (Exception e)
     {
         ExceptionMessageToViewBag(e);
         return(View("Error"));
     }
 }