示例#1
0
 public static List <int> tablasRelacionadas(int id)
 {
     try
     {
         var procedimiento = new DataLayer();
         return(procedimiento.tablasRelacionadas(id));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#2
0
 public static List<int> tablasRelacionadas(int id)
 {
     try
     {
         var procedimiento = new DataLayer();
         return procedimiento.tablasRelacionadas(id);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#3
0
 public static Paginado SelectAll(int skip, int take)
 {
     try
     {
         var procedimiento = new DataLayer();
         return(procedimiento.selectAll(skip, take));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#4
0
 public static Paginado SelectAll(int skip, int take)
 {
     try
     {
         var procedimiento = new DataLayer();
         return procedimiento.selectAll(skip, take);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }