master
1using System.Collections.Generic;
2using MVPtoMVVM.domain;
3
4namespace MVPtoMVVM.repositories
5{
6 public interface ITodoItemRepository
7 {
8 void Save(TodoItem item);
9 TodoItem Get(int id);
10 IEnumerable<TodoItem> GetAll();
11 void Delete(TodoItem item);
12 void Delete(int todoItemId);
13 }
14}