public void Handle(StudyCreatedEvent e) { var study = new Study(); study.Apply(e); _studyRepository.Save(study); }
public void Apply(StudyCreatedEvent e) { _id = e.StudyId; _statusId = StudyStatus.CreatedGuid; _statusName = StudyStatus.CreatedName; }
public void Apply(StudyCreatedEvent e) { _id = e.StudyId; }