Exemple #1
0
 public RestaurantService(EasyPizzaContext context)
 {
     _context = context;
 }
Exemple #2
0
 public MenusController(EasyPizzaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #3
0
 public MenuItemsController(EasyPizzaContext context)
 {
     _context = context;
 }
Exemple #4
0
 public IngredientsController(EasyPizzaContext context)
 {
     _context = context;
 }
Exemple #5
0
 public UserService(EasyPizzaContext context)
 {
     _context = context;
 }