示例#1
0
 void IIdeasService.DeleteIdea(string ideaId)
 {
     if (!_ideasRepository.DeleteIdea(ideaId))
     {
         throw new NotFoundException("Cannot find idea");
     }
 }