コード例 #1
0
 public Repository(HelpDbContext ctx)
 {
     Context = ctx;
 }
コード例 #2
0
 public SectionRepository(HelpDbContext context)
     : base(context)
 {
 }
コード例 #3
0
 public UnitOfWork(HelpDbContext context)
 {
     _context = context;
     Sections = new SectionRepository(_context);
     Articles = new ArticleRepository(_context);
 }
コード例 #4
0
 public ArticleRepository(HelpDbContext context)
     : base(context)
 {
 }