public PersonUpdate(EventBroker eventBroker)
{
_subscription = eventBroker.Subscribe<PersonUpdated>(UpdatePersonInfo);
}
private void UpdatePersonInfo(PersonUpdated obj)
{
throw new NotImplementedException();
}
My logic is I am updating the email address. Hence it should be updated in Voyado too,
so is it possible to pass the old email
Litium version: 7