Ejemplo n.º 1
0
 public BookBusiness()
 {
     generator           = new ContextGenerator(libraryContext, false);
     booksGenresBusiness = new BooksGenresBusiness();
 }
Ejemplo n.º 2
0
 public BookBusiness(LibraryContext context)
 {
     libraryContext      = context;
     generator           = new ContextGenerator(context, true);
     booksGenresBusiness = new BooksGenresBusiness(context);
 }