示例#1
0
 public ProductService(IHttpContextAccessor httpContextAccessor, IRepositoryWrapper repoWrapper,
                       ICloudDinaryService cloudDinaryService, IMapper mapper)
     : base(httpContextAccessor, repoWrapper)
 {
     _cloudDinaryService = cloudDinaryService;
     _mapper             = mapper;
 }
示例#2
0
 public UserController(
     IPasswordHasherService passwordHasherService,
     IUserService userService
     , ICloudDinaryService cloudinaryService)
 {
     this._passwordHasherService = passwordHasherService;
     _userService       = userService;
     _cloudinaryService = cloudinaryService;
 }