Skip to content

Instantly share code, notes, and snippets.

@mczachurski
Created February 13, 2018 19:06
Show Gist options
  • Save mczachurski/ad3964985ff0e810b71119876fa5498d to your computer and use it in GitHub Desktop.
Save mczachurski/ad3964985ff0e810b71119876fa5498d to your computer and use it in GitHub Desktop.
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