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