Ejemplo n.º 1
0
 public static T CommonValue <T>(string action, object parameter)
 {
     try
     {
         string sp = GetSP(action);
         return(CommonExcute <T> .GeneralValueOfT(sp, parameter));
     }
     catch (Exception ex)
     {
         string em = ex.StackTrace;
         throw new Exception();
     }
 }