Files
mongodb-generic-repository/IntegrationTests/Infrastructure/ITestRepository.cs
T
alexandre-spieser 5817486f10 Cleanup after tests
2017-08-27 15:50:39 +00:00

9 lines
184 B
C#

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