コード例 #1
0
ファイル: OrderService.cs プロジェクト: Numx6/LindaEShop1
 public OrderService(LindaContext lindaContext, IUser user, IProduct productService)
 {
     _context        = lindaContext;
     _userService    = user;
     _productService = productService;
 }
コード例 #2
0
 public ProductService(LindaContext context)
 {
     _context = context;
 }
コード例 #3
0
 public UserService(LindaContext context)
 {
     _context = context;
 }