public System.Int32 Insertar( System.String descripcion, System.DateTime fecha )
 {
     try
     {
         DFeriado_ = new Datos.Feriado ();
         DFeriado_.descripcion = descripcion;
         DFeriado_.fecha = fecha;
         int i = DFeriado_.Insertar ();
         if ( i < 0 )
             throw new System.Exception ( "Feriado: Error al insertar. \n" );
         return i;
     }
     catch ( System.Exception ex )
     {
         throw new System.Exception ( "Feriado: Error al insertar. \n" + ex.Message );
     }
 }