public void DeleteAccount() { DomainEventsHandler.Raise(new AccountDeleted { Id = this.Id }); }
public void CreateNewAccount() { DomainEventsHandler.Raise(new AccountCreated { Id = this.Id, Name = this.Name }); }