Exemple #1
0
 public ProfileController(IMyShelfDataService myShelfDataService,
                          UserManager <ApplicationUser> userManager,
                          SignInManager <ApplicationUser> signInManager,
                          IGoodreadsService goodreadsService)
 {
     _myShelfDataService = myShelfDataService;
     _userManager        = userManager;
     _signInManager      = signInManager;
     _goodreadsService   = goodreadsService;
 }
 public GoodreadsController(IGoodreadsService goodreadsService)
 {
     _goodreadsService = goodreadsService;
 }