123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using CefSharp.WinForms;
- using efunbox_xyyf_windows.baseMvp;
- using efunbox_xyyf_windows.util;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace efunbox_xyyf_windows.contract
- {
- public class MainContract
- {
- public interface IModel :BaseModel{
- HttpResult getLenvIdByToken(HttpItem httpItem);
- }
- public interface IView : BaseView
- {
- ProgressBar getLoadingBar();
- ChromiumWebBrowser getWebView();
- void getLenvIdSuccess();
- }
- public interface IPresenter
- {
- void initWebView(ChromiumWebBrowser webview);
- string getWebUrl();
- void getLenvIdByToken();
- void LenvAutoLogin();
- }
- }
- }
|