Example #1
0
 public ProcessDataRepository(ProcessDataDBContext dbContext)
 {
     if (dbContext == null)
     {
         throw new ArgumentNullException("Null DbContext");
     }
     DbContext = dbContext;
     DbSet     = DbContext.Set <T>();
 }
Example #2
0
 public DocumentRepository(ProcessDataDBContext dbContext)
     : base(dbContext)
 {
 }
Example #3
0
 public TemplateRepository(ProcessDataDBContext dbContext)
     : base(dbContext)
 {
 }