Exemplo n.º 1
0
 public FatecRepository(ISPDbContext context)
 {
     if (context == null) throw new ArgumentNullException("context");
     _context = context;
 }
 protected AbstractNewsRepository(ISPDbContext context)
 {
     if (context == null) throw new ArgumentNullException("context");
     _context = context;
 }
Exemplo n.º 3
0
 public NewsRepository(ISPDbContext context)
     : base(context)
 {
 }