mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
505 B
13 lines
505 B
namespace ZeroLevel.Patterns.Queries
|
|
{
|
|
public interface IQueryBuilder<T, Q>
|
|
{
|
|
/// <summary>
|
|
/// Превращение абстрактного запроса в реальный, под конкретное хранилище
|
|
/// </summary>
|
|
/// <param name="query">Абстрактный запрос</param>
|
|
/// <returns>Запрос к хранилищу конкретного типа</returns>
|
|
IRealQuery<T, Q> Build(IQuery query);
|
|
}
|
|
}
|