示例#1
0
 public int insertarPeriodo(CatPeriodos _catperiodos)
 {
     try
     {
         CatPeriodosDAL _catperiodosDAL = new CatPeriodosDAL();
         return(_catperiodosDAL.insertarPeriodo(_catperiodos));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }