| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2016/2/3 17:35:24
- //Author
- //Description Create
- //----------------------------------------------------------------
- using Muchinfo.MTPClient.Data;
- namespace Muchinfo.MTPClient.Account
- {
- public interface IViewOperate
- {
- /// <summary>
- /// 菜单调用操作
- /// </summary>
- /// <param name="item"></param>
- void ShowView(SysMenuItem item);
- }
- }
|