public async Task <IList <ChecklistCategoryModel> > GetAllChecklistCategoriesByUnitId(int unitId)
        {
            try
            {
                var items = await _repository.GetAllChecklistCategoriesByUnitId(unitId);

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