public void ScheduleNextReview(ScheduleNextReview command)
 {
     _EventsService.ScheduleNextReview(command);
 }
 public ScheduleNextReviewJson(ScheduleNextReview review)
     : base(review)
 {
     ReviewDate = review.ReviewDate.ToShortDateString();
 }
 public void ScheduleNextReview(ScheduleNextReview command)
 {
     SetSource(command);
     Mongo.Events.Insert(command);
 }