コード例 #1
0
 public static List<Tuple<int, string>> selectTables()
 {
     try
     {
         var procedimiento = new DataLayer();
         return procedimiento.selectTables();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
コード例 #2
0
 public static List <Tuple <int, string> > selectTables()
 {
     try
     {
         var procedimiento = new DataLayer();
         return(procedimiento.selectTables());
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }