Exemple #1
0
 public CouchRepository(ICouchClientFactory couchClientFactory, string bucketName)
 {
     Task.Run(async() =>
     {
         Collection = await couchClientFactory.GenerateCollectionConnectionAsync(bucketName);
     }).Wait();
 }
Exemple #2
0
 public TestCouchRepository(ICouchClientFactory clientFactory) : base(clientFactory, "test")
 {
 }
 public PlaneFrameRepository(ICouchClientFactory couchClientFactory) : base(couchClientFactory, "plane_records")
 {
 }