public void ValidateScreeningDoesntExist(int auditoriumId, DateTime date)
 {
     if (screeningService.IsScreeningExisting(auditoriumId, date))
     {
         throw new InvalidOperationException(Constants.ErrorMessages.ScreeningAlreadyExists);
     }
 }