17 lines
466 B
C#
17 lines
466 B
C#
|
|
using DouyinApi.IServices.BASE;
|
|||
|
|
using DouyinApi.Model.Models;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.IServices
|
|||
|
|
{
|
|||
|
|
public interface IAdvertisementServices :IBaseServices<Advertisement>
|
|||
|
|
{
|
|||
|
|
//int Sum(int i, int j);
|
|||
|
|
//int Add(Advertisement model);
|
|||
|
|
//bool Delete(Advertisement model);
|
|||
|
|
//bool Update(Advertisement model);
|
|||
|
|
//List<Advertisement> Query(Expression<Func<Advertisement, bool>> whereExpression);
|
|||
|
|
|
|||
|
|
void ReturnExp();
|
|||
|
|
}
|
|||
|
|
}
|