public SQLiteTagRepository(ILogger logger, ITagTypeFactory typeFactory)
            : base(logger)
        {
            if (typeFactory == null)
                throw new ArgumentNullException("typeFactory");

            this.typeFactory = typeFactory;
        }
        public SQLiteTagRepository(ILogger logger, ITagTypeFactory typeFactory, IDbConnection defaultConnection)
            : base(logger, defaultConnection)
        {
            if (typeFactory == null)
                throw new ArgumentNullException("typeFactory");

            this.typeFactory = typeFactory;
        }
示例#3
0
        public FirebirdTagRepository(ILogger logger, ITagTypeFactory typeFactory)
            : base(logger)
        {
            if (typeFactory == null)
            {
                throw new ArgumentNullException("typeFactory");
            }

            this.typeFactory = typeFactory;
        }
        public SQLiteTagRepository(ILogger logger, ITagTypeFactory typeFactory, IDbConnection defaultConnection)
            : base(logger, defaultConnection)
        {
            if (typeFactory == null)
            {
                throw new ArgumentNullException("typeFactory");
            }

            this.typeFactory = typeFactory;
        }