Beispiel #1
0
 public BookController(SageBookContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public BookRepository(SageBookContext context) : base(context)
 {
 }
Beispiel #3
0
 public SageRepository(SageBookContext context)
 {
     this._context = context;
 }
Beispiel #4
0
 public UnitOfWork(SageBookContext context)
 {
     this.context = context;
 }
Beispiel #5
0
 public SageController(SageBookContext context)
 {
     unitOfWork = new UnitOfWork();
     _context   = context;
 }