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