/// <summary>
 /// Deprecated Method for adding a new object to the Policies EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPolicies(Policy policy)
 {
     base.AddObject("Policies", policy);
 }
 /// <summary>
 /// Create a new Policy object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 public static Policy CreatePolicy(global::System.Int32 id, global::System.String name, global::System.String description)
 {
     Policy policy = new Policy();
     policy.Id = id;
     policy.Name = name;
     policy.Description = description;
     return policy;
 }