Exemplo n.º 1
0
 public ActionResult list()
 {
     try
     {
         var OS = new OfficeSurveyModel();
         var CL = new commonLogic();
         CL.dataTable     = OS.select();
         CL.tableId       = "officeSurveyList";
         ViewBag.htmldata = CL.residenceSurveyGridView();
     }
     catch (Exception e)
     {
         return(View());
     }
     return(View());
 }