Exemplo n.º 1
0
 public async Task CreateNewChecklistCategoryAsync(ChecklistCategoryModel checklistCategory, int unitId)
 {
     try
     {
         await _repository.CreateNewChecklistCategoryAsync(checklistCategory, unitId);
     }
     catch (OzoneException ex)
     {
         throw new OzoneException(ex.Message, ex.InnerException);
     }
 }