IViewOperate.cs 714 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2016/2/3 17:35:24
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. using Muchinfo.MTPClient.Data;
  16. namespace Muchinfo.MTPClient.Account
  17. {
  18. public interface IViewOperate
  19. {
  20. /// <summary>
  21. /// 菜单调用操作
  22. /// </summary>
  23. /// <param name="item"></param>
  24. void ShowView(SysMenuItem item);
  25. }
  26. }