예제 #1
0
 public UserService(MicShopContext context)
 {
     _context = context;
 }
예제 #2
0
 public MenuItemsService(MicShopContext context)
 {
     _context = context;
 }
예제 #3
0
 public OrderService(MicShopContext context, IUserService userService)
 {
     _context     = context;
     _userService = userService;
 }
예제 #4
0
 public ProductService(MicShopContext context, ICategoryService categoryService)
 {
     _context         = context;
     _categoryService = categoryService;
 }
예제 #5
0
 public ContactService(MicShopContext context)
 {
     _context = context;
 }
예제 #6
0
 public CategoryService(MicShopContext context)
 {
     _context = context;
 }
예제 #7
0
 public CartController(MicShopContext context)
 {
     _context = context;
 }