Fixed DI registration of IDatabaseManager.

This commit is contained in:
Sipke Schoorstra
2015-08-03 17:23:47 +01:00
parent 7f55f27580
commit 0c729e6e7f

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace Orchard.ImportExport.Services { namespace Orchard.ImportExport.Services {
public interface IDatabaseManager { public interface IDatabaseManager : IDependency {
IEnumerable<string> GetTenantDatabaseTableNames(); IEnumerable<string> GetTenantDatabaseTableNames();
void DropTenantDatabaseTables(); void DropTenantDatabaseTables();
} }