Example #1
0
 public CartService(YashDbContext context)
 {
     _context = context;
 }
Example #2
0
 public GoldService(YashDbContext context)
 {
     _context = context;
 }
Example #3
0
 public DiamondService(YashDbContext context)
 {
     _context = context;
 }
Example #4
0
 public UserService(YashDbContext dbContext)
 {
     db = dbContext;
 }
Example #5
0
 public ItemService(YashDbContext context)
 {
     _context = context;
 }
Example #6
0
 public OrderService(YashDbContext context)
 {
     _context = context;
 }
Example #7
0
 public CategoryService(YashDbContext context)
 {
     _context = context;
 }
Example #8
0
 public RingSizeService(YashDbContext context)
 {
     _context = context;
 }
Example #9
0
 public CertificationService(YashDbContext context)
 {
     _context = context;
 }
Example #10
0
 public ProductTypeService(YashDbContext context)
 {
     _context = context;
 }