public bool EntitySearchItemDelete(string entitySearchItemId)
        {
            log.LogEverything("Not Specified", t.GetMethodName() + " called");
            log.LogVariable("Not Specified", nameof(entitySearchItemId), entitySearchItemId);

            try
            {
                return(http.EntitySearchItemDelete(entitySearchItemId));
            }
            catch (Exception ex)
            {
                throw new Exception("EntitySearchItemDelete failed", ex);
            }
        }
Example #2
0
        public async Task <bool> EntitySearchItemDelete(string entitySearchItemId)
        {
            log.LogEverything("Communicator.EntitySearchItemDelete", "called");
            log.LogVariable("Communicator.EntitySearchItemDelete", nameof(entitySearchItemId), entitySearchItemId);

            try
            {
                return(await http.EntitySearchItemDelete(entitySearchItemId));
            }
            catch (Exception ex)
            {
                throw new Exception("EntitySearchItemDelete failed", ex);
            }
        }