Example #1
0
 public BulletinBoard(IBulletinDbContext dbContext, BulletinBoardOptions options)
 {
     _options      = options;
     _dbContext    = dbContext;
     _urlGenerator = GetUrlGenerator(_options);
 }
Example #2
0
 internal Bulletin([NotNull] TContext dbContext, [NotNull] BulletinOptions options)
 {
     _options   = options;
     _dbContext = dbContext;
 }