Esempio n. 1
0
        public async Task <ChecklistCategoryModel> GetSingleChecklistCategoryByIdAsync(int Id)
        {
            try
            {
                var item = await _repository.GetSingleChecklistCategoryByIdAsync(Id);

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