Ejemplo n.º 1
0
 public FactonQueryService(
     IQueryService queryService,
     IEntityQueryService entityQueryService,
     IMappingLogger logger)
 {
     this.queryService       = queryService;
     this.entityQueryService = entityQueryService;
     this.logger             = logger;
 }
Ejemplo n.º 2
0
 protected QueryableDomainService(IUnitOfWork unitOfWork, IEntityRepository <TEntity> entityRepository, IEntityQueryService entityQueryService)
     : base(unitOfWork, entityRepository)
 {
     _entityQueryService = entityQueryService;
 }