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