10 lines
253 B
C#
10 lines
253 B
C#
using MongoDbGenericRepository;
|
|
|
|
namespace CoreIntegrationTests
|
|
{
|
|
public interface ITestRepository : IBaseMongoRepository
|
|
{
|
|
void DropTestCollection<TDocument>();
|
|
void DropTestCollection<TDocument>(string partitionKey);
|
|
}
|
|
} |