public JsonResult DeleteMarketJob(int id)
 {
     _marketServices.CancelMarketJob(id, CurrentUserId, CurrentTenantId, "Cancelled by the administrator.");
     return(Json(new { success = true }));
 }