Skip to content

Instantly share code, notes, and snippets.

@mizrael
Created December 29, 2015 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mizrael/144f356aece4f6d30881 to your computer and use it in GitHub Desktop.
Save mizrael/144f356aece4f6d30881 to your computer and use it in GitHub Desktop.
basic C# interface for a MongoDB database Factory
public interface IMongoDatabaseFactory
{
IMongoDatabase Connect(string connectionString, string dbName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment