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