示例#1
0
 public List <CatPeriodos> list(int id = 0, string filtro = null)
 {
     try
     {
         CatPeriodosDAL _catPeriodosDAL = new CatPeriodosDAL();
         return(_catPeriodosDAL.obtenerPeriodos(id, filtro));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }