public GraphSessionFactory(IQueryExecutorFactory queryExecutorFactory, IRepositoryFactory repositoryFactory, IEntityStateCacheFactory entityStateFactory, IProxyFactory proxyFactory) { _queryExecutorFactory = queryExecutorFactory; _repositoryFactory = repositoryFactory; _listeners = new List <IListener>(); _entityStateFactory = entityStateFactory; _proxyFactory = proxyFactory; }
public GraphSession(IUnitOfWork uow, IEnumerable <IListener> listeners, IQueryExecutorFactory queryExecutorFactory, IRepositoryFactory repositoryFactory, IEntityStateCache state, IProxyFactory proxyFactory) { _repositories = new ConcurrentDictionary <Type, IRepository>(); _uow = uow; _listeners = listeners.ToList(); _queryExecutorFactory = queryExecutorFactory; _repositoryFactory = repositoryFactory; _state = state; _proxyFactory = proxyFactory; }
public SyncController(IYandexService yandexService, IAuthorizationSettings authorizationSettings, IDomainService domainService, ITrackGetter trackGetter, IProgressBar progressBar, IImportResultLogger importResultLogger, IQueryExecutorFactory queryExecutorFactory, ITempSessionService tempSessionService ) { this.yandexService = yandexService; this.authorizationSettings = authorizationSettings; this.domainService = domainService; this.trackGetter = trackGetter; this.progressBar = progressBar; this.importResultLogger = importResultLogger; this.queryExecutorFactory = queryExecutorFactory; this.tempSessionService = tempSessionService; }
public SyncWizardController(ITempSessionService tempSessionService, ITrackGetter trackGetter, IQueryExecutorFactory queryExecutorFactory, IYandexService yandexService, IAuthorizationSettings authorizationSettings, IJsonSerializer jsonSerializer, IJsonTrackGetter jsonTrackGetter, IDomainService domainService, IProgressBar progressBar, IImportResultLogger importResultLogger, ICaptcha captcha) { this.tempSessionService = tempSessionService; this.trackGetter = trackGetter; this.queryExecutorFactory = queryExecutorFactory; this.yandexService = yandexService; this.authorizationSettings = authorizationSettings; this.jsonSerializer = jsonSerializer; this.jsonTrackGetter = jsonTrackGetter; this.domainService = domainService; this.progressBar = progressBar; this.importResultLogger = importResultLogger; this.captcha = captcha; }
public QueryBus(IServiceProvider serviceProvider, IQueryExecutorFactory executorFactory) { _serviceProvider = serviceProvider; _executorFactory = executorFactory; }
public ImageBayanService(IQueryExecutorFactory queryExecutorFactory, IImageHasher imageHasher) { this.queryExecutorFactory = queryExecutorFactory; this.imageHasher = imageHasher; }
public StudyController(IQueryExecutorFactory queryExecutorFactory, IXmlSerializer xmlSerializer, IJsonSerializer jsonSerializer) { this.queryExecutorFactory = queryExecutorFactory; this.xmlSerializer = xmlSerializer; this.jsonSerializer = jsonSerializer; }
public QueryBus(IQueryExecutorFactory executorFactory) { this.executorFactory = executorFactory; }
public MockedClass(IQueryExecutorFactory queryExecutorFactory, decimal unmockable1, IArrayed[] arrayeds, IClass clas, IClass clas2, IArrayed[] arrayeds2, int unmockable2) { _queryExecutorFactory = queryExecutorFactory; _arrayeds = arrayeds; _clas = clas; }
//protected IResolver ObjectResolver { get; } public QueryDispatcher(IQueryExecutorFactory executorFactory) { // ObjectResolver = objectResolver; ExecutorFactory = executorFactory; }
public TempSessionService(IQueryExecutorFactory queryExecutorFactory) { this.queryExecutorFactory = queryExecutorFactory; }
public BayanServiceTest() { imageBayanService = kernel.Get <IImageBayanService>(); queryExecutorFactory = kernel.Get <IQueryExecutorFactory>(); }
public QueryDispatcher(IQueryExecutorFactory executorFactory) { ExecutorFactory = executorFactory; }
public ImportResultLogger(IQueryExecutorFactory queryExecutorFactory) { this.queryExecutorFactory = queryExecutorFactory; }