예제 #1
0
        public async Task <IList <ChecklistElementModel> > GetAllChecklistElementsAsync()
        {
            try
            {
                var items = await _repository.GetAllChecklistElementsAsync();

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