private static string FormatMessage(IEnumerable<string> commands)
 {
     return string.Format("Commands not found. Commands list='{0}'", commands.FormatElements());
 }
 private static string FormatMessage(IEnumerable<string> productNames)
 {
     return string.Format("Could not find products: {0}", productNames.FormatElements());
 }
 private static string FormatMessage(IEnumerable<NotificationType> notificationTypes, Guid accountId)
 {
     return string.Format("Subscription on notifications: {0} for account: {1} was not found", notificationTypes.FormatElements(),
         accountId);
 }
 private static string FormatMessage(IEnumerable<string> products)
 {
     return string.Format("Cannot manually create release which is marked as Automated {0}.", products.FormatElements());
 }