private void ResetWithNewVerb()
        {
            _ending = _databaseManager.GetRandomVerbEnding();
              _currentVerb = _databaseManager.GetRandomVerb();

              GuessConjugationTextBox.Text = String.Empty;
              GuessConjugationTextBox.Foreground = Brushes.Black;

              VerbLabel.Content = _currentVerb.Infinitive;
              EndingLabel.Content = _ending.Display;

              CorrectConjugationLabel.Content = String.Empty;

              _hasBeenVerified = false;
        }
 partial void DeleteVerb_Regular(Verb_Regular instance);
 partial void UpdateVerb_Regular(Verb_Regular instance);
		private void detach_Verb_Regulars(Verb_Regular entity)
		{
			this.SendPropertyChanging();
			entity.Conjugation = null;
		}
 partial void InsertVerb_Regular(Verb_Regular instance);