/// <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="updated_at">Initial value of the Updated_at property.</param>
 public static Service CreateService(global::System.Int32 id, global::System.String name, global::System.DateTime updated_at)
 {
     Service service = new Service();
     service.Id = id;
     service.Name = name;
     service.Updated_at = updated_at;
     return service;
 }