Created
February 13, 2018 19:06
-
-
Save mczachurski/ad3964985ff0e810b71119876fa5498d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
protocol TasksRepositoryProtocol { | |
func getTasks() -> [Task] | |
func getTask(id: Int) -> Task? | |
func addTask(task: Task) | |
func updateTask(task: Task) | |
func deleteTask(id: Int) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment