IFunctionCodeServices.cs 441 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.ViewModel.SystemView;
  6. namespace EMIS.CommonLogic.SystemServices
  7. {
  8. public interface IFunctionCodeServices
  9. {
  10. IList<FunctionCodeView> GetAllFunctionCodeViewList();
  11. IList<FunctionCodeView> GetSelectFunctionCodeViewList(Guid roleID);
  12. void SaveAuthenization(Guid roleID, IList<string> functionCodeList);
  13. }
  14. }