/// <summary> /// 继承AddUpdateDimissionPresenterBase,大小界面之间的操作 /// </summary> public AddFileCargosInfoPresenter(IFileCargoInfoView itsView, int accountid) : base(itsView) { itsView.AccountID = accountid; _ListPresenter = new FileCargosListPresenter(itsView.FileCargoListView); InitView(); }
public AddFileCargosPresenterBase(IFileCargoInfoView itsView) { _ItsView = itsView; SwitchFileCargoPresenter(); AttachViewEvent(); }