ISysPostService.cs 251 B

1234567891011
  1. using Model;
  2. namespace Services
  3. {
  4. public interface ISysPostService : IBaseService<SysPost>
  5. {
  6. string CheckPostNameUnique(SysPost sysPost);
  7. string CheckPostCodeUnique(SysPost sysPost);
  8. List<SysPost> GetAll();
  9. }
  10. }