/// <summary>
 /// Create a new LogPlatforms object.
 /// </summary>
 /// <param name="logPlatformId">Initial value of LogPlatformId.</param>
 /// <param name="logPlatformName">Initial value of LogPlatformName.</param>
 public static LogPlatforms CreateLogPlatforms(int logPlatformId, string logPlatformName)
 {
     LogPlatforms logPlatforms = new LogPlatforms();
     logPlatforms.LogPlatformId = logPlatformId;
     logPlatforms.LogPlatformName = logPlatformName;
     return logPlatforms;
 }
 /// <summary>
 /// There are no comments for LogPlatforms in the schema.
 /// </summary>
 public void AddToLogPlatforms(LogPlatforms logPlatforms)
 {
     base.AddObject("LogPlatforms", logPlatforms);
 }