public BookController(UserManager <ApplicationUser> userManager, IBookService service, IWishService wishService, IGoogleBookService googleBookService,
                       IComicVineService comicVineService) : base(userManager)
 {
     _service           = service;
     _wishService       = wishService;
     _googleBookService = googleBookService;
     _comicVineService  = comicVineService;
 }
 public SearchController(IComicVineService comicVineService, IComicDAO comicDAO, ICharacterDAO characterDAO, ICreatorDAO creatorDAO, IVolumeDAO volumeDAO, ITagDAO tagDAO)
 {
     comicVine         = comicVineService;
     this.comicDAO     = comicDAO;
     this.characterDAO = characterDAO;
     this.creatorDAO   = creatorDAO;
     this.volumeDAO    = volumeDAO;
     this.tagDAO       = tagDAO;
 }
 public UserController(ICollectionDAO collectionDAO, IComicDAO comicDAO, IComicVineService comicVine, IUserDAO userDAO, ICharacterDAO characterDAO, ICreatorDAO creatorDAO, ITagDAO tagDAO, IVolumeDAO volumeDAO)
 {
     this.collectionDAO = collectionDAO;
     this.comicDAO      = comicDAO;
     this.comicVine     = comicVine;
     this.userDAO       = userDAO;
     this.characterDAO  = characterDAO;
     this.creatorDAO    = creatorDAO;
     this.tagDAO        = tagDAO;
     this.volumeDAO     = volumeDAO;
 }