Exemple #1
0
 public QuoteService(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }
 public WholesalerController(IBreweryContext breweryContext, IQuoteService quoteService)
 {
     _breweryContext = breweryContext;
     _quoteService   = quoteService;
 }
Exemple #3
0
 public BeersController(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }