Created
April 12, 2012 00:59
-
-
Save ronnieoverby/2363908 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Raven.Client.Document; | |
namespace RavenLinqpadDriver | |
{ | |
public interface IConfigureDocumentStore | |
{ | |
/// <summary> | |
/// Completes configuration the DocumentStore. | |
/// </summary> | |
/// <param name="preConfiguredDocStore">A DocumentStore object that has been configured with the values from the connection properties dialog window.</param> | |
/// <returns>A completely configured DocumentStore instance.</returns> | |
DocumentStore ConfigureDocumentStore(DocumentStore preConfiguredDocStore); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment