Ejemplo n.º 1
0
 public RatingType Update(RatingType ratingType)
 {
     TypeRepository.Update(ratingType.Map <DbRatingType>());
     foreach (RateChoice choice in ratingType.RateChoices)
     {
         UpdateChoice(choice);
     }
     return(Get(ratingType.Id));
 }
Ejemplo n.º 2
0
 public RatingType Insert(RatingType ratingType)
 {
     TypeRepository.Insert(ratingType.Map <DbRatingType>()).Map <RatingType>();
     foreach (RateChoice choice in ratingType.RateChoices)
     {
         InsertChoice(choice);
     }
     ratingType.RateChoices = GetRateChoices(ratingType.Id);
     ratingType             = Get(ratingType.Id);
     return(ratingType);
 }