public async Task <IActionResult> CompleteDelivery(int loadingPlaceId)
        {
            await deliveryService.CompleteDelivery(loadingPlaceId);

            return(RedirectToAction("LoadingPlaceDetail", new { loadingPlaceId }));
        }