public ScoreModel(Score scores)
 {
     this.Assign(scores);
     Restaurant = new RestaurantModel();
     Voters     = new VoterModel();
 }
 public RatingModel(Rating ratings)
 {
     this.Assign(ratings);
     Restaurant = new RestaurantModel();
     Voters     = new VoterModel();
 }