public IActionResult GetAllContainersForGoogleMap(int id)
        {
            var eats = _machineService.GetAllSoldContainersForGoogleMap(id);

            return(Ok(eats));
        }