예제 #1
0
 public AllDb(BookmakersContext context)
 {
     OrderDb       = new OrderDb(context);
     OrderStatusDb = new OrderStatusDb(context);
     RoleDb        = new RoleDb(context);
     MatchDb       = new MatchDb(context);
     UserDb        = new UserDb(context);
     CategoryDb    = new CategoryDb(context);
     BasketDb      = new BasketDb(context);
 }
예제 #2
0
 public MatchDb(BookmakersContext context)
 {
     db = new MatchRepository(context);
 }
 public UserRepository(BookmakersContext context) : base(context)
 {
 }
예제 #4
0
 public BaseRepository(BookmakersContext context)
 {
     db = context;
 }
 public AccountController(BookmakersContext context) : base(context)
 {
 }
 public MatchRepository(BookmakersContext context) : base(context)
 {
 }
예제 #7
0
 public CategoryRepository(BookmakersContext context) : base(context)
 {
 }
예제 #8
0
 public OrderStatusDb(BookmakersContext context)
 {
     db = new OrderStatusRepository(context);
 }
예제 #9
0
 public BasketDb(BookmakersContext context)
 {
     db = new BasketRepository(context);
 }
예제 #10
0
 public RoleDb(BookmakersContext context)
 {
     db = new RoleRepository(context);
 }
예제 #11
0
 public OrderStatusRepository(BookmakersContext context) : base(context)
 {
 }
 public BasketRepository(BookmakersContext context) : base(context)
 {
 }
예제 #13
0
 public RoleRepository(BookmakersContext context) : base(context)
 {
 }
예제 #14
0
 public UserDb(BookmakersContext context)
 {
     db = new UserRepository(context);
 }
예제 #15
0
 public CategoryDb(BookmakersContext context)
 {
     db = new CategoryRepository(context);
 }
예제 #16
0
 public HomeController(BookmakersContext context)
 {
     db = new AllDb(context);
 }
예제 #17
0
 public OrderDb(BookmakersContext context)
 {
     db = new OrderRepository(context);
 }