/// <summary>
 /// Deprecated Method for adding a new object to the Softwares EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSoftwares(Software software)
 {
     base.AddObject("Softwares", software);
 }
 /// <summary>
 /// Create a new Software object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="name">Initial value of the name property.</param>
 /// <param name="producer">Initial value of the producer property.</param>
 /// <param name="type">Initial value of the type property.</param>
 /// <param name="configId">Initial value of the configId property.</param>
 public static Software CreateSoftware(global::System.Int32 id, global::System.String name, global::System.String producer, global::System.String type, global::System.Int32 configId)
 {
     Software software = new Software();
     software.id = id;
     software.name = name;
     software.producer = producer;
     software.type = type;
     software.configId = configId;
     return software;
 }