Пример #1
0
        public async Task <IList <ChecklistCategoryModel> > GetAllChecklistCategoriesAsync()
        {
            try
            {
                var items = await _repository.GetAllChecklistCategoriesAsync();

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