using DOAN.Model.System; namespace DOAN.ServiceCore.Services { public interface ISysPostService : IBaseService { string CheckPostNameUnique(SysPost sysPost); string CheckPostCodeUnique(SysPost sysPost); List GetAll(); } }