public BookController(UserManager <ApplicationUser> userManager, IBookService service, IWishService wishService, IGoogleBookService googleBookService,
                       IComicVineService comicVineService) : base(userManager)
 {
     _service           = service;
     _wishService       = wishService;
     _googleBookService = googleBookService;
     _comicVineService  = comicVineService;
 }
Beispiel #2
0
 public BooksService(IGoogleBookService iGoogleBookService)
 {
     this.iGoogleBookService = iGoogleBookService;
 }
Beispiel #3
0
 public HomeController(IMailService ImailService, IGoogleBookService iGoogleBookService)
 {
     iMailService            = ImailService;
     this.iGoogleBookService = iGoogleBookService;
 }