コード例 #1
0
ファイル: CloudantClient.cs プロジェクト: joaoportela/mycouch
        public CloudantClient(IConnection connection, CloudantClientBootstraper bootstraper = null)
            : base(connection, bootstraper ?? new CloudantClientBootstraper())
        {
            bootstraper = bootstraper ?? new CloudantClientBootstraper();

            Searches = bootstraper.SearchesFn(Connection);
        }
コード例 #2
0
        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);
        }
コード例 #4
0
        public FrmSqlServerSearcherPresenter(IFrmSqlServerSearcher view, ISearches searches)
        {
            _view     = view;
            _searches = searches;

            Initialize();
        }