/// <summary>
 /// Gibt alle Seminarbuchungen für eine Belegposition zurück
 /// </summary>
 /// <param name="belegHandle"></param>
 /// <param name="belegPositionHandle"></param>
 /// <returns></returns>
 public Seminarbuchungen GetBuchungen(int belegHandle, int belegPositionHandle)
 {
     try
     {
         return(SeminarData.GetSeminarbuchungen(Mandant, belegHandle, belegPositionHandle));
     }
     catch (Exception ex)
     {
         TraceLog.LogException(ex);
         throw;
     }
 }
 /// <summary>
 /// Gibt alle Seminarbuchungen für eine Belegposition zurück
 /// </summary>
 /// <param name="vorPosHandle"></param>
 /// <returns></returns>
 public Seminarbuchungen GetBuchungen(int vorPosHandle)
 {
     try
     {
         return(SeminarData.GetSeminarbuchungen(Mandant, vorPosHandle));
     }
     catch (Exception ex)
     {
         TraceLog.LogException(ex);
         throw;
     }
 }