public IEnumerable <DogDto> GetLostDogs()
        {
            var dogs = _dogService.GetLost();

            return(dogs);
        }