/// <summary>
 /// Deprecated Method for adding a new object to the Services EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToServices(Service service)
 {
     base.AddObject("Services", service);
 }
 /// <summary>
 /// Create a new Service object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="platformID">Initial value of the PlatformID property.</param>
 public static Service CreateService(global::System.Int32 id, global::System.String name, global::System.Int32 platformID)
 {
     Service service = new Service();
     service.ID = id;
     service.Name = name;
     service.PlatformID = platformID;
     return service;
 }