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