public BeerController(RepositoryBeer repo)
 {
     this.repo = repo;
 }
 public RatingController(RepositoryBeer repo)
 {
     this.repo = repo;
 }
Beispiel #3
0
 public AuthController(RepositoryBeer repo
                       , IConfiguration configuration)
 {
     this.helper = new HelperToken(configuration);
     this.repo   = repo;
 }