rename after full refactor
This commit is contained in:
@@ -11,10 +11,13 @@ namespace MongoDbGenericRepository
|
||||
/// <summary>
|
||||
/// The IBaseMongoRepository exposes the CRUD functionality of the BaseMongoRepository.
|
||||
/// </summary>
|
||||
public interface IBaseMongoRepository : IReadOnlyMongoRepository, IBaseMongoRepository_Create, IBaseMongoRepository_Update, IBaseMongoRepository_Delete, IBaseMongoRepository_Index
|
||||
public interface IBaseMongoRepository :
|
||||
IReadOnlyMongoRepository,
|
||||
IBaseMongoRepository_Create,
|
||||
IBaseMongoRepository_Update,
|
||||
IBaseMongoRepository_Delete,
|
||||
IBaseMongoRepository_Index
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Asynchronously returns a paginated list of the documents matching the filter condition.
|
||||
/// </summary>
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ using MongoDbGenericRepository.Models;
|
||||
|
||||
namespace MongoDbGenericRepository
|
||||
{
|
||||
public interface IKeyTypedReadOnlyMongoRepository<TKey> where TKey : IEquatable<TKey>
|
||||
public interface IReadOnlyMongoRepository<TKey> where TKey : IEquatable<TKey>
|
||||
{
|
||||
#region Read
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace MongoDbGenericRepository
|
||||
/// <summary>
|
||||
/// The IReadOnlyMongoRepository exposes the readonly functionality of the BaseMongoRepository.
|
||||
/// </summary>
|
||||
public interface IReadOnlyMongoRepository : IBaseReadOnlyRepository, IKeyTypedReadOnlyMongoRepository<Guid>
|
||||
public interface IReadOnlyMongoRepository : IBaseReadOnlyRepository, IReadOnlyMongoRepository<Guid>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user