Ejemplo n.º 1
0
        public async Task <Guid> CreateNewChecklistDetailsElementAsync(ChecklistElementDetailModel checklistElementDetails)
        {
            try
            {
                var val = await _repository.CreateNewChecklistDetailsElementAsync(checklistElementDetails);

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