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