Ejemplo n.º 1
0
 public ActionResult PreProcess(PreprocessModel model)
 {
     try
     {
         Preprocessing p = new Preprocessing();
         p.Pre_processing(model._Name);
         return(Content("Done with PreProcessing"));
     }
     catch (Exception e)
     {
         return(Content(e.ToString()));
     }
 }