コード例 #1
0
 public CartService(YashDbContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: GoldService.cs プロジェクト: thisisminh172/yash
 public GoldService(YashDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public DiamondService(YashDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public UserService(YashDbContext dbContext)
 {
     db = dbContext;
 }
コード例 #5
0
 public ItemService(YashDbContext context)
 {
     _context = context;
 }
コード例 #6
0
ファイル: OrderService.cs プロジェクト: thisisminh172/yash
 public OrderService(YashDbContext context)
 {
     _context = context;
 }
コード例 #7
0
ファイル: CategoryService.cs プロジェクト: thisisminh172/yash
 public CategoryService(YashDbContext context)
 {
     _context = context;
 }
コード例 #8
0
 public RingSizeService(YashDbContext context)
 {
     _context = context;
 }
コード例 #9
0
 public CertificationService(YashDbContext context)
 {
     _context = context;
 }
コード例 #10
0
 public ProductTypeService(YashDbContext context)
 {
     _context = context;
 }