Exemplo n.º 1
0
 public QuoteService(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }
Exemplo n.º 2
0
 public WholesalerController(IBreweryContext breweryContext, IQuoteService quoteService)
 {
     _breweryContext = breweryContext;
     _quoteService   = quoteService;
 }
Exemplo n.º 3
0
 public BeersController(IBreweryContext breweryContext)
 {
     _breweryContext = breweryContext;
 }