/// <summary>
 /// Deprecated Method for adding a new object to the Fulfillments EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFulfillments(Fulfillment fulfillment)
 {
     base.AddObject("Fulfillments", fulfillment);
 }
 /// <summary>
 /// Create a new Fulfillment object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="requirementId">Initial value of the RequirementId property.</param>
 /// <param name="claimId">Initial value of the ClaimId property.</param>
 public static Fulfillment CreateFulfillment(global::System.Int64 id, global::System.String description, global::System.Int64 requirementId, global::System.Int64 claimId)
 {
     Fulfillment fulfillment = new Fulfillment();
     fulfillment.Id = id;
     fulfillment.Description = description;
     fulfillment.RequirementId = requirementId;
     fulfillment.ClaimId = claimId;
     return fulfillment;
 }