Files
mongodb-generic-repository/CoreIntegrationTests/Infrastructure/ITestRepository.cs
T
2017-09-09 17:52:12 +00:00

10 lines
249 B
C#

using MongoDbGenericRepository;
namespace IntegrationTests
{
public interface ITestRepository : IBaseMongoRepository
{
void DropTestCollection<TDocument>();
void DropTestCollection<TDocument>(string partitionKey);
}
}