Exemplo n.º 1
0
 public CombinedBookData(IBookData sql, IBookFetcher api)
 {
     this.sql = sql;
     this.api = api;
 }
Exemplo n.º 2
0
 public BooksController(IBookData db, IBookFetcher service)
 {
     this.db      = db;
     this.service = service;
 }