Пример #1
0
 public DataTable All(String Table = "Default")
 {
     try
     {
         if (Table == "All")
         {
             return(JobDAL.AllTable());
         }
         else
         {
             return(JobDAL.All());
         }
     }
     catch (Exception ex)
     {
         throw new Exception(String.Format("{0}.All: {1}", core, ex));
     }
 }