Beispiel #1
0
 public FlowerRepository(FlowerDbContext context) : base(context)
 {
 }
Beispiel #2
0
 public FlowerDbContext Init()
 {
     return(dbContext ?? (dbContext = new FlowerDbContext()));
 }
Beispiel #3
0
 public Repository(FlowerDbContext context)
 {
     _context = context;
 }