Example #1
0
 public MigrationService(MigrationRunner runner, IDocumentStore store)
 {
     _runner = runner;
     _store  = store;
     if (string.IsNullOrEmpty(_store.Database))
     {
         throw DatabaseDoesNotExistException.CreateWithMessage(_store.Database, "No database specified");
     }
 }