using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IAreaService { ResultEntity save(AreaDTO dto); AreaDTO Get(string id); ResultDataEntity SearchByPaging(AreaDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(); } }