public CategoryApplicationService(CoffeShopDbContext context)
 {
     _context = context;
 }
Example #2
0
 public OrderEntryApplicationService(CoffeShopDbContext context)
 {
     _context = context;
 }
 public MenusController(CoffeShopDbContext context, IMenuApplicationService menuApplicationService)
 {
     _context = context;
     _menuApplicationService = menuApplicationService;
 }
 public WeatherForecastController(ILogger <WeatherForecastController> logger, CoffeShopDbContext context)
 {
     _logger  = logger;
     _context = context;
 }
 public CategoriesController(CoffeShopDbContext context, ICategoryApplicationService categoryApplicationService)
 {
     _context = context;
     _categoryApplicationService = categoryApplicationService;
 }
 public OrderEntriesController(CoffeShopDbContext context, IOrderEntryApplicationService OrderEntryApplicationService)
 {
     _context = context;
     _OrderEntryApplicationService = OrderEntryApplicationService;
 }
 public OrdersController(CoffeShopDbContext context, IOrderApplicationService orderApplicationService)
 {
     _context = context;
     _orderApplicationService = orderApplicationService;
 }
Example #8
0
 public MenuApplicationService(CoffeShopDbContext context)
 {
     _context = context;
 }