コード例 #1
0
 public FatecRepository(ISPDbContext context)
 {
     if (context == null) throw new ArgumentNullException("context");
     _context = context;
 }
コード例 #2
0
 protected AbstractNewsRepository(ISPDbContext context)
 {
     if (context == null) throw new ArgumentNullException("context");
     _context = context;
 }
コード例 #3
0
 public NewsRepository(ISPDbContext context)
     : base(context)
 {
 }