public void Handle(EditRatingCommand command) { //Lesson lesson = repo.GetById<Lesson>(command.Id, command.Version); Lesson lesson = repo.GetById <Lesson>(command.Id); lesson.EditRating(command.RatingId, command.Rating, command.Content, command.Date); repo.Save(lesson, Guid.NewGuid()); }