Beispiel #1
0
 public CheckoutDAO(SoftBucksContext context)
     : base(context)
 {
     _context = context;
 }
Beispiel #2
0
 public BidDAO(SoftBucksContext context)
     : base(context)
 {
     _context = context;
 }
Beispiel #3
0
 public BeverageDAO(SoftBucksContext context) : base(context)
 {
     _context = context;
 }
Beispiel #4
0
 public PaymentDAO(SoftBucksContext context) : base(context)
 {
     _context = context;
 }
Beispiel #5
0
 public AbstractDAO(SoftBucksContext context)
 {
     _context = context;
 }