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); }
public ApiLayer(string uuid, ConnectionLayer builtConnection, CryptoLayer crypt, MetadataLayer ml) { this.dbUuid = uuid; this.connection = builtConnection; this.encrypt = crypt; this.metadata = ml; }