/// <summary>
 /// Deprecated Method for adding a new object to the RequestItems EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRequestItems(RequestItem requestItem)
 {
     base.AddObject("RequestItems", requestItem);
 }
 /// <summary>
 /// Create a new RequestItem object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="request_id">Initial value of the Request_id property.</param>
 /// <param name="good_id">Initial value of the Good_id property.</param>
 /// <param name="serial_num">Initial value of the Serial_num property.</param>
 /// <param name="warranty_id">Initial value of the Warranty_id property.</param>
 /// <param name="employee_id">Initial value of the Employee_id property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="packing">Initial value of the Packing property.</param>
 /// <param name="defect">Initial value of the Defect property.</param>
 /// <param name="state_id">Initial value of the State_id property.</param>
 public static RequestItem CreateRequestItem(global::System.Int32 id, global::System.Int32 request_id, global::System.Int32 good_id, global::System.String serial_num, global::System.Int32 warranty_id, global::System.Int32 employee_id, global::System.String description, global::System.String packing, global::System.String defect, global::System.Int32 state_id)
 {
     RequestItem requestItem = new RequestItem();
     requestItem.Id = id;
     requestItem.Request_id = request_id;
     requestItem.Good_id = good_id;
     requestItem.Serial_num = serial_num;
     requestItem.Warranty_id = warranty_id;
     requestItem.Employee_id = employee_id;
     requestItem.Description = description;
     requestItem.Packing = packing;
     requestItem.Defect = defect;
     requestItem.State_id = state_id;
     return requestItem;
 }