private void SavePerformanceHelper(Performance current)
 {
     if (current.Artist != null && current.Artist.Id >= 0 && current.Venue != null && current.Venue.Id > 0)
     {
         administrationService.SavePerformance(current);
     }
 }