예제 #1
0
 public CartService(RGSDbContext rGSDbContext, IMapper mapper)
 {
     _rGSDbContext = rGSDbContext;
     _mapper       = mapper;
 }
예제 #2
0
 //private readonly ICloudinaryService _cloudinaryService;
 public AccountService(RGSDbContext rGSDbContext, IMapper mapper)
 {
     _rGSDbContext = rGSDbContext;
     _mapper       = mapper;
     //_cloudinaryService = cloudinaryService;
 }
예제 #3
0
 public ProductCatService(RGSDbContext rGSDbContext, IMapper mapper, ICloudinaryService cloudinaryService)
 {
     _rGSDbContext      = rGSDbContext;
     _mapper            = mapper;
     _cloudinaryService = cloudinaryService;
 }