public async Task <List <ChecklistBuilderModel> > GetAllUnitCategoriesAndSubElementsAsync(int unitId)
        {
            try
            {
                var items = await _repository.GetAllUnitCategoriesAndSubElementsAsync(unitId);

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