/// <summary>
 /// Initializes a new instance of the <see cref="PackageManifestFunctions"/> class.
 /// </summary>
 /// <param name="dataStore">Data Store.</param>
 public PackageManifestFunctions(IApiDataStore dataStore)
 {
     this.dataStore = dataStore;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VersionFunctions"/> class.
 /// </summary>
 /// <param name="dataStore">Data Store.</param>
 public VersionFunctions(IApiDataStore dataStore)
 {
     this.dataStore = dataStore;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LocaleFunctions"/> class.
 /// </summary>
 /// <param name="dataStore">Data Store.</param>
 public LocaleFunctions(IApiDataStore dataStore)
 {
     this.dataStore = dataStore;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ManifestSearchFunctions"/> class.
 /// </summary>
 /// <param name="dataStore">Data Store.</param>
 public ManifestSearchFunctions(IApiDataStore dataStore)
 {
     this.dataStore = dataStore;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="InstallerFunctions"/> class.
 /// </summary>
 /// <param name="dataStore">Data Store.</param>
 public InstallerFunctions(IApiDataStore dataStore)
 {
     this.dataStore = dataStore;
 }