示例#1
0
        public CloudantClient(IConnection connection, CloudantClientBootstraper bootstraper = null)
            : base(connection, bootstraper ?? new CloudantClientBootstraper())
        {
            bootstraper = bootstraper ?? new CloudantClientBootstraper();

            Searches = bootstraper.SearchesFn(Connection);
        }
        public MyCouchCloudantClient(IConnection connection, MyCouchCloudantClientBootstraper bootstraper = null)
            : base(connection, bootstraper ?? new MyCouchCloudantClientBootstraper())
        {
            bootstraper = bootstraper ?? new MyCouchCloudantClientBootstraper();

            Searches = bootstraper.SearchesFn(Connection);
        }
示例#3
0
        public MyCouchCloudantClient(IDbClientConnection connection, MyCouchCloudantClientBootstrapper bootstrapper = null)
            : base(connection, bootstrapper ?? new MyCouchCloudantClientBootstrapper())
        {
            bootstrapper = bootstrapper ?? new MyCouchCloudantClientBootstrapper();

            Searches = bootstrapper.SearchesFn(Connection);
        }
        public FrmSqlServerSearcherPresenter(IFrmSqlServerSearcher view, ISearches searches)
        {
            _view     = view;
            _searches = searches;

            Initialize();
        }