2024-12-03 09:25:16 +08:00
|
|
|
|
using DOAN.Model.System;
|
2024-11-28 13:36:05 +08:00
|
|
|
|
|
2024-12-03 09:25:16 +08:00
|
|
|
|
namespace DOAN.ServiceCore.Services
|
2024-11-28 13:36:05 +08:00
|
|
|
|
{
|
|
|
|
|
|
public interface ISysPostService : IBaseService<SysPost>
|
|
|
|
|
|
{
|
|
|
|
|
|
string CheckPostNameUnique(SysPost sysPost);
|
|
|
|
|
|
string CheckPostCodeUnique(SysPost sysPost);
|
|
|
|
|
|
List<SysPost> GetAll();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|