public bool Validar()
 {
     if (_control.Value >= _from)
     {
         return(true);
     }
     else
     {
         MensajePorPantalla.MensajeValidacionDateTimeFrom(_control.Name, _from);
         return(false);
     }
 }