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