private void Handle(GranteeCreatedEvent evnt) { _publisher = evnt.Publisher; _info = evnt.Info; _verifications = new List <Verification>(); _testifys = new List <Testify>(); _status = GranteeStatus.Placed; _moneyHelps = new List <MoneyHelp>(); }
private IList <MoneyHelp> _moneyHelps; //现金帮助 public Grantee(Guid id, Guid publisher, GranteeInfo info) : base(id) { ApplyEvent(new GranteeCreatedEvent(publisher, info)); }