public CouchDatabase(CouchClient couchClient, string name, ICouchDocumentConvention couchDocumentConvention) { CouchClient = couchClient; Name = name; CouchDocumentConvention = couchDocumentConvention; }
public CouchDatabase(CouchClient couchClient, string name) : this(couchClient, name, new CouchDocumentConvention()) { }