public ReviewModel(int ratingTypeId, string comment)
 {
     RatingType = new RatingTypeModel(ratingTypeId, "");
     Comment    = comment;
 }
 public ReviewModel()
 {
     RatingType = new RatingTypeModel();
     Service    = new ServiceModel();
 }