Exemplo n.º 1
0
 public BaseManager(AmazonServiceConnection connection)
 {
     Connection = connection;
 }
Exemplo n.º 2
0
 public BaseManager()
 {
     Connection = new AmazonServiceConnection(TestConfig.GetValueFromConfig("ExtractURL"));
     Connection.SuppressAuthentication = true;
 }
Exemplo n.º 3
0
 public BaseManager(string baseUri)
 {
     Connection = new AmazonServiceConnection(baseUri);
     Connection.SuppressAuthentication = true;
 }
Exemplo n.º 4
0
 public DefaultManager(AmazonServiceConnection connection) : base(connection)
 {
 }