Exemplo n.º 1
0
        public async Task <bool> CreateNewChecklistElementAsync(ChecklistElementModel checklistElement)
        {
            bool status = false;

            try
            {
                status = await _repository.CreateNewChecklistElementAsync(checklistElement);

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