예제 #1
0
 public Bluzelle(string entry, string pemKey, string uuid)
 {
     _ConnectionLayer = new ConnectionLayer(entry);
     _CryptoLayer     = new CryptoLayer(pemKey);
     _MetadataLayer   = new MetadataLayer(uuid);
     _ApiLayer        = new ApiLayer(uuid, _ConnectionLayer, _CryptoLayer, _MetadataLayer);
 }
예제 #2
0
 public ApiLayer(string uuid, ConnectionLayer builtConnection, CryptoLayer crypt, MetadataLayer ml)
 {
     this.dbUuid     = uuid;
     this.connection = builtConnection;
     this.encrypt    = crypt;
     this.metadata   = ml;
 }