Example #1
0
            public CorrespondenceFact CreateFact(FactMemento memento)
            {
                SessionEvaluationRating newFact = new SessionEvaluationRating(memento);

                return newFact;
            }
Example #2
0
 // Results
 // Business constructor
 public SessionEvaluationRatingAnswer(
     SessionEvaluationRating rating
     ,IEnumerable<SessionEvaluationRatingAnswer> prior
     ,int value
     )
 {
     InitializeResults();
     _rating = new PredecessorObj<SessionEvaluationRating>(this, GetRoleRating(), rating);
     _prior = new PredecessorList<SessionEvaluationRatingAnswer>(this, GetRolePrior(), prior);
     _value = value;
 }
Example #3
0
 public RatingViewModel(SessionEvaluationRating sessionEvaluationRating)
 {
     _sessionEvaluationRating = sessionEvaluationRating;
 }