def display_all_todos(self): todos = TodoService.get_todos() if not todos: is_empty_todos() return for todo in todos: display_msg(todo)
def did_well(): display_msg('성공적으로 처리되었습니다.')
def __init__(self): display_msg("시스템 컨트롤러에서 TodoController를 생성합니다!")
def is_not_match(): display_msg('매치되는 id가 없습니다. 다시 검색해 주세요!')
def is_empty_todos(): display_msg('todo가 없습니다. 새로 만들어 주세요!')
def is_not_unique(): display_msg('해당 id는 유니크가 아닙니다. 다시 실행해 주세요!')
def is_vaild_what(what): if what: return True display_msg('공백이 아닌 것으로 입력해 주세요!') return False
def is_valid_id(id): if id.isdigit(): return True display_msg('id는 숫자를 입력해 주세요!') return False