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