/// <summary> /// Deprecated Method for adding a new object to the Feedbacks EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToFeedbacks(Feedback feedback) { base.AddObject("Feedbacks", feedback); }
/// <summary> /// Create a new Feedback object. /// </summary> /// <param name="id">Initial value of the ID property.</param> /// <param name="isResponded">Initial value of the IsResponded property.</param> /// <param name="isRead">Initial value of the IsRead property.</param> public static Feedback CreateFeedback(global::System.Int32 id, global::System.Boolean isResponded, global::System.Boolean isRead) { Feedback feedback = new Feedback(); feedback.ID = id; feedback.IsResponded = isResponded; feedback.IsRead = isRead; return feedback; }