Esempio n. 1
0
 public CouchDatabase(CouchClient couchClient, string name, ICouchDocumentConvention couchDocumentConvention)
 {
     CouchClient             = couchClient;
     Name                    = name;
     CouchDocumentConvention = couchDocumentConvention;
 }
Esempio n. 2
0
 public CouchDatabase(CouchClient couchClient, string name) : this(couchClient, name, new CouchDocumentConvention())
 {
 }