private void btnRegistrar_Click(object sender, EventArgs e) { try { DateTime fechallegada = Convert.ToDateTime(ConfigurationManager.AppSettings["FechaSistema"]).AddMinutes(15); if (_turno.Fecha.CompareTo(fechallegada) < 0) { throw new Exception("El usuario debia registrarse 15 minutos antes!"); } _turnosManager.RegistrarLlegada(_turno, _bono); MessageBox.Show("Registrado Correctamente!"); _afiliado = null; _afiliadosForm = null; _turno = null; _turnosForm = null; _bonosForm = null; _bono = null; panelTurno.Hide(); panelBono.Hide(); btnRegistrar.Hide(); } catch (System.Exception excep) { MessageBox.Show(excep.Message); return; } }
private void btnRegistrar_Click(object sender, EventArgs e) { if (_turno.Fecha > Convert.ToDateTime(ConfigurationManager.AppSettings["FechaSistema"]).AddMinutes(15)) { throw new Exception("El usuario debia registrarse 15 minutos antes!"); } try { _turnosManager.RegistrarLlegada(_turno, _bono); } catch (System.Exception excep) { MessageBox.Show(excep.Message); } }