public FlowerRepository(FlowerDbContext context) : base(context) { }
public FlowerDbContext Init() { return(dbContext ?? (dbContext = new FlowerDbContext())); }
public Repository(FlowerDbContext context) { _context = context; }