blob: 2c488c7c120d0ef122a0a66aba009e7a3a36ecc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using MVPtoMVVM.mvp.views;
namespace MVPtoMVVM.mvp.presenters
{
public interface IMvpPresenter
{
void SetView(IMvpView view);
void AddNewItem();
void CancelAllChanges();
void Remove(int itemId);
}
}
|