Exemplo n.º 1
0
        async Task INotificationHandler <LedgerAccountUpdated> .Handle(LedgerAccountUpdated e, CancellationToken t)
        {
            var result =
                await db.LedgerAccounts
                .SingleAsync(u => u.LedgerAccountExternalId == e.Id);

            result.CommonName    = e.CommonName;
            result.AccountNumber = e.AccountNumber;
            result.IsActive      = e.IsActive;

            await db.SaveChangesAsync();
        }
Exemplo n.º 2
0
 private void Apply(LedgerAccountUpdated e)
 {
     this.CommonName    = e.CommonName;
     this.AccountNumber = e.AccountNumber;
     this.IsActive      = e.IsActive;
 }