public Installer(IProvideCosmosClient clientProvider, InstallerSettings settings)
 {
     installerSettings   = settings;
     this.clientProvider = clientProvider;
 }
Ejemplo n.º 2
0
 public ContainerHolderResolver(IProvideCosmosClient provideCosmosClient, ContainerInformation?defaultContainerInformation, string databaseName)
 {
     this.databaseName = databaseName;
     this.defaultContainerInformation = defaultContainerInformation;
     this.provideCosmosClient         = provideCosmosClient;
 }