17 lines
453 B
C#
17 lines
453 B
C#
using MongoDbGenericRepository.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MongoDbGenericRepository
|
|
{
|
|
/// <summary>
|
|
/// The IReadOnlyMongoRepository exposes the readonly functionality of the BaseMongoRepository.
|
|
/// </summary>
|
|
public interface IReadOnlyMongoRepository : IBaseReadOnlyRepository, IKeyTypedReadOnlyMongoRepository<Guid>
|
|
{
|
|
|
|
}
|
|
}
|