Пример #1
0
 public virtual bool Equals(expEvaluator other)
 {
     return(other != null && this.Id == other.Id);
 }
Пример #2
0
 public virtual List <expEvaluation> GetEvaluations(expEvaluator evaluator)
 {
     return((Evaluations == null) ? new List <expEvaluation>() : Evaluations.Where(e => e.Evaluator == evaluator && e.Submission != null).OrderBy(e => e.Submission.Id).ToList());
 }