public async Task <IActionResult> Delete(Guid procId)
        {
            await procurementService.RemoveAsync(procId);

            return(RedirectToAction("GetAllProcurements", "Procurement"));
        }