public async Task <ActionResult <LocationsDTO> > Get(int id)
        {
            var dto = await _service.ReadById(id);

            if (dto != null)
            {
                return(Ok(dto));
            }

            else
            {
                return(BadRequest("Didnt find Item"));
            }
        }