Example #1
0
 public PermissionController(BeeContext context)
 {
     _context = context;
 }
Example #2
0
 public CoachRepository(BeeContext beeContext) : base(beeContext)
 {
 }
Example #3
0
 public MapController(BeeContext context)
 {
     _context = context;
 }
Example #4
0
 public UserRepository(BeeContext beeContext) : base(beeContext)
 {
 }
Example #5
0
 public BeeHiveRepository(BeeContext BeeContext) : base(BeeContext)
 {
 }
Example #6
0
 public UnitOfWork(string connection)
 {
     this.beeContext = new BeeContext(connection);
 }
 public GoalRepository(BeeContext beeContext) : base(beeContext)
 {
 }
 public RepositoryBase(BeeContext context)
 {
     this.BeeContext = context;
 }
Example #9
0
 public HomeController(BeeContext context)
 {
     _context = context;
 }
Example #10
0
 public GenericRepository(BeeContext db)
 {
     _db = db;
 }
Example #11
0
 public ProdutoCategoriaRepository(BeeContext db) : base(db)
 {
 }
Example #12
0
 public ProdutoRepository(BeeContext db) : base(db)
 {
 }