private void When(MeetingFeePaymentPaidDomainEvent @event)
 {
     _status = MeetingFeePaymentStatus.Of(@event.Status);
 }
 private void When(MeetingFeePaymentCreatedDomainEvent @event)
 {
     this.Id       = @event.MeetingFeePaymentId;
     _meetingFeeId = new MeetingFeeId(@event.MeetingFeeId);
     _status       = MeetingFeePaymentStatus.Of(@event.Status);
 }