Пример #1
0
 public QuoteService(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }
Пример #2
0
 public WholesalerController(IBreweryContext breweryContext, IQuoteService quoteService)
 {
     _breweryContext = breweryContext;
     _quoteService   = quoteService;
 }
Пример #3
0
 public BeersController(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }