Beispiel #1
0
 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>();
 }
Beispiel #2
0
        private IList <MoneyHelp> _moneyHelps;                //现金帮助

        public Grantee(Guid id, Guid publisher, GranteeInfo info) : base(id)
        {
            ApplyEvent(new GranteeCreatedEvent(publisher, info));
        }