/// <summary>
 /// Initializes a new instance of the <see cref="UPSyncDataSets"/> class.
 /// </summary>
 /// <param name="session">
 /// The session.
 /// </param>
 /// <param name="incremental">
 /// if set to <c>true</c> [incremental].
 /// </param>
 /// <param name="crmDataStore">
 /// The CRM data store.
 /// </param>
 /// <param name="configStore">
 /// The configuration store.
 /// </param>
 /// <param name="theDelegate">
 /// The delegate.
 /// </param>
 public UPSyncDataSets(
     IServerSession session,
     bool incremental,
     ICRMDataStore crmDataStore,
     IConfigurationUnitStore configStore,
     ISyncDataSetsDelegate theDelegate)
     : this(configStore?.AllDataSetNamesSorted(), incremental, session, crmDataStore, configStore, theDelegate)
 {
 }