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