Added interface

This commit is contained in:
alexandre-spieser
2017-08-27 15:37:06 +00:00
parent 63c3b0f642
commit c24fa78907
5 changed files with 339 additions and 151 deletions
+9
View File
@@ -0,0 +1,9 @@
using MongoDbGenericRepository;
namespace IntegrationTests
{
public interface ITestsRepository : IBaseMongoRepository
{
void DropTestCollection<TDocument>();
}
}