public ActionResult DeleteConfirmed(long id)
        {
            OutboundOrderLinesInventoryAllocationPost outboundorderlinesinventoryallocation = _outboundorderlinesinventoryallocationService.GetPost(id);

            outboundorderlinesinventoryallocation.UserName = User.Identity.Name;
            _outboundorderlinesinventoryallocationService.Delete(outboundorderlinesinventoryallocation);
            return(RedirectToAction("Index"));
        }