...
However be sure to call the base function first:
protected override void FinishUser(ICoreUnitofWork uow, IUser user, string[] csvRow)
{
...
base.FinishUser(uow, user, csvRow);
..... //custom code
}
Example of a configured org using custom integration:
...