Ejemplo n.º 1
0
        public async Task <bool> DeleteElementDetailsByIdAsync(Guid elementDetailsGuid)
        {
            try
            {
                var status = await _repository.DeleteElementDetailsByIdAsync(elementDetailsGuid);

                return(status);
            }
            catch (OzoneException ex)
            {
                throw new OzoneException(ex.Message, ex.InnerException);
            }
        }