blob: 904444ce46969d8ad2d1f50cdf3f131c80fb62f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Collections.Generic;
using MVPtoMVVM.domain;
using MVPtoMVVM.presenters;
using MVPtoMVVM.views;
namespace MVPtoMVVM.mappers
{
public interface ITodoItemPresenterMapper
{
ITodoItemPresenter MapFrom(TodoItem item);
IEnumerable<ITodoItemPresenter> MapAll(IEnumerable<TodoItem> items);
}
}
|