示例#1
0
        public CompetitionsApiSyncTarget(CompetitionsApiClient client, string licenseIssuerId = null, bool requireProviderKey = false)
        {
            this.client = client;

            log    = LogManager.GetLogger(GetType());
            source = new CompetitionsApiSyncSource(client, licenseIssuerId, requireProviderKey);
        }
示例#2
0
 public CompetitionsApiSyncSource(CompetitionsApiClient client, string licenseIssuerId = null,
                                  bool requireProviderKey = false)
 {
     this.client             = client;
     this.licenseIssuerId    = licenseIssuerId;
     this.requireProviderKey = requireProviderKey;
 }