Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using Microsoft.Azure.Documents.Client;
10 :
11 : namespace Cqrs.Azure.DocumentDb.Factories
12 : {
13 : public interface IAzureDocumentDbDataStoreConnectionStringFactory
14 : {
15 0 : DocumentClient GetAzureDocumentDbConnectionClient();
16 :
17 0 : string GetAzureDocumentDbDatabaseName();
18 :
19 0 : string GetAzureDocumentDbCollectionName();
20 :
21 0 : bool UseOneCollectionPerDataStore();
22 : }
23 : }
|