/// <summary>
 /// Deprecated Method for adding a new object to the IssueReplyComplaints EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToIssueReplyComplaints(IssueReplyComplaint issueReplyComplaint)
 {
     base.AddObject("IssueReplyComplaints", issueReplyComplaint);
 }
 /// <summary>
 /// Create a new IssueReplyComplaint object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="filedByUserId">Initial value of the FiledByUserId property.</param>
 /// <param name="issueReplyId">Initial value of the IssueReplyId property.</param>
 /// <param name="complaint">Initial value of the Complaint property.</param>
 public static IssueReplyComplaint CreateIssueReplyComplaint(global::System.Int32 id, global::System.Int32 filedByUserId, global::System.Int32 issueReplyId, global::System.String complaint)
 {
     IssueReplyComplaint issueReplyComplaint = new IssueReplyComplaint();
     issueReplyComplaint.Id = id;
     issueReplyComplaint.FiledByUserId = filedByUserId;
     issueReplyComplaint.IssueReplyId = issueReplyId;
     issueReplyComplaint.Complaint = complaint;
     return issueReplyComplaint;
 }