public Review(Reviewer reviewer, string grade, Paper paper, Recomandation recomandation) { this.reviewer = reviewer; this.grade = grade; this.paper = paper; this.recomandation = recomandation; }
public Review() { this.idReview = 1; this.reviewer = new Reviewer(); this.grade = ""; this.paper = new Paper(); this.recomandation = new Recomandation(); }
public override bool Equals(object obj) { if (obj != null && obj.GetType() == this.GetType()) { Recomandation c = (Recomandation)obj; if (c.idRecomandation != this.idRecomandation || c.file != this.file) { return(false); } return(true); } return(false); }