16 lines
373 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2024-07-01 16:04:10 +08:00
using DOAN.Model.System;
using DOAN.Repository;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.System.IService
2024-05-16 13:30:30 +08:00
{
public interface ISysPostService : IBaseService<SysPost>
{
string CheckPostNameUnique(SysPost sysPost);
string CheckPostCodeUnique(SysPost sysPost);
List<SysPost> GetAll();
}
}