Beispiel #1
0
 public BookDM(IBookCatalogContext context)
     : base(context)
 {
 }
 public CategoryService(IBookCatalogContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public BookService(IBookCatalogContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public AuthorDM(IBookCatalogContext context)
     : base(context)
 {
 }
Beispiel #5
0
 public BaseDM(IBookCatalogContext context)
 {
     BCContext = context;
 }