コード例 #1
0
        public async Task <List <ChecklistElementDetailModel> > GetAllElementDetailsListAsync(Guid unitId)
        {
            try
            {
                var items = await _repository.GetAllElementDetailsListAsync(unitId);

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