public UserController(IGraphService graphService, IMapper mapper, IPetsitterRepository petsitterRepository) { _graphService = graphService; _mapper = mapper; _petsitterRepository = petsitterRepository; }
public PetsittersController(IPetsitterRepository petsitterRepository, IMapper mapper) { this._petsitterRepository = petsitterRepository; this._mapper = mapper; }