Example #1
0
 public IActionResult userConfirmDeliveryPay(long deliveryId)
 {
     _deliveryService.ConfirmGettingDelivery(User.Identity.Name, deliveryId);
     ViewData.Add("DeliveryInfoToGetDtoList", _deliveryService.GetDeliveryInfoToGet(User.Identity.Name));
     return(View("userNotGottenDelivers"));
 }