Exemplo n.º 1
0
 public void GotoPreviousAyah()
 {
     CurrentAyah = QuranUtils.GetPreviousAyah(CurrentAyah, true);
     if (repeatManager.ShouldRepeat() && !QuranUtils.IsBismillah(CurrentAyah))
     {
         if (CurrentAyah < repeatManager.FirstAyah)
         {
             CurrentAyah = repeatManager.LastAyah;
             repeatManager.DecrementCounter();
         }
     }
 }