예제 #1
0
 public PurchasesController(BooksService booksService, AuthorsService authorsService,
                            PurchasesService purchasesService, PurchasesHistoryService purchaseshistoryservice)
 {
     this.booksService       = booksService;
     this.authorsService     = authorsService;
     this.purchasesService   = purchasesService;
     purchasesHistoryService = purchaseshistoryservice;
 }
예제 #2
0
 public AuthorsController(BooksService booksService, AuthorsService authorsService)
 {
     this.booksService   = booksService;
     this.authorsService = authorsService;
 }