public UsersController(UserManager <ApplicationUser> userManager, IServiceProvider serviceProvider, IBeerService beers, IBeerCommentService beercomments)
 {
     this.userManager     = userManager;
     this.serviceProvider = serviceProvider;
     this.beercomments    = beercomments;
     this.beers           = beers;
 }
 public BeerCommentsController(UserManager <ApplicationUser> users, IBeerCommentService comments, IBeerService beers)
 {
     this.userManager = users;
     this.comments    = comments;
     this.beers       = beers;
 }