public JsonResult AgencyEntServiceDelete(int id)
        {
            int SuccID = db_EECIP.DeleteT_OE_ORGANIZATION_ENT_SVCS(id);

            if (SuccID == 0)
            {
                return(Json("Unable to delete record."));
            }
            else
            {
                //now delete from Azure
                AzureSearch.DeleteSearchIndexEntService(id);
                return(Json("Success"));
            }
        }