コード例 #1
0
        public GenericRepository(IParserDbContext dbContext)
        {
            Guard.WhenArgument(dbContext, nameof(IParserDbContext)).IsNull().Throw();

            this.entities = dbContext.Set <T>();
        }