Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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:

...