public IActionResult CancelTransaction(string id)
 {
     salesOrderService.CancelTransaction(id);
     return(RedirectToAction("Index"));
 }