Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : namespace Cqrs.Mongo.Factories
10 : {
11 : /// <summary>
12 : /// A factory for MongoDb related connection string settings.
13 : /// </summary>
14 : public interface IMongoDataStoreConnectionStringFactory
15 : {
16 : /// <summary>
17 : /// Get the connection string for the MongoDB server.
18 : /// </summary>
19 1 : string GetMongoConnectionString();
20 :
21 : /// <summary>
22 : /// Get the name of database on the MongoDB server.
23 : /// </summary>
24 1 : string GetMongoDatabaseName();
25 : }
26 : }
|