Files
mongodb-generic-repository/IntegrationTests/Infrastructure/ITestRepository.cs
T
2017-08-27 17:35:21 +00:00

10 lines
249 B
C#

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