public PropertyRepository(InfoSystemDbContext context)
 {
     _context = context;
 }
Example #2
0
 public TypeRepository(InfoSystemDbContext context)
 {
     _context = context;
 }
Example #3
0
 public UserRepository(InfoSystemDbContext context)
 {
     _context = context;
 }
Example #4
0
 public EntityRepository(InfoSystemDbContext dbContext)
 {
     _context = dbContext;
 }
Example #5
0
 internal SqlHandler(InfoSystemDbContext context)
 {
     _context = context;
 }