using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IPltPageService { ResultEntity save(PltPageDTO pltPageDTO); PltPageDTO Get(string id); ResultDataEntity SearchByPaging(PltPageDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GePagetList(); List GetauthList(string roleid = ""); ResultEntity SaveManyEntity(string roleid = "", string pageid = "", string User_id = ""); List GetUserPage(string userid , string page_path); } }