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

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

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