public async Task <IActionResult> CollectPackages(ChangePackageCourierViewModel model)
        {
            await _packageService.CollectPackage(model);

            return(RedirectToAction("Index", "Home"));
        }