1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.SystemView;
- namespace EMIS.CommonLogic.SystemServices
- {
- public interface IFunctionCodeServices
- {
- IList<FunctionCodeView> GetAllFunctionCodeViewList();
- IList<FunctionCodeView> GetSelectFunctionCodeViewList(Guid roleID);
- void SaveAuthenization(Guid roleID, IList<string> functionCodeList);
- }
- }
|