Exemplo n.º 1
0
        public async Task <bool> CreateNewChecklistElementDetailAsync(ChecklistElementDetailModel checklistElementDetail, Guid elementGuid)
        {
            try
            {
                var status = await _repository.CreateNewChecklistElementDetailAsync(checklistElementDetail, elementGuid);

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