예제 #1
0
        public async Task <bool> DeleteChecklistCategoryById(int categoryId)
        {
            bool status = false;

            try
            {
                status = await _repository.DeleteChecklistCategoryById(categoryId);

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