rename after full refactor

This commit is contained in:
Alexandre SPIESER
2019-04-14 19:31:28 +01:00
parent 0626292d09
commit 2207f2f1a1
14 changed files with 37 additions and 34 deletions
@@ -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>
@@ -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>
{
}