Created
January 25, 2018 23:21
-
-
Save umarov/648d3a7695ffb5e3d80a5355f0d28551 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun onTodoItemAction(todoItem: TodoItem, actionType: Int) { | |
when (actionType) { | |
TodoItem.CREATE -> todoListDetailViewModel.createTodoItem(todoItem) | |
TodoItem.UPDATE -> todoListDetailViewModel.updateTodoItem(todoItem) | |
TodoItem.DELETE -> todoListDetailViewModel.deleteTodoItem(todoItem) | |
} | |
} | |
TodoListDetailAdapter(context, onTodoItemAction) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment