key1_beacon_api/ARW.Service/IBaseService.cs
2023-06-02 21:15:33 +08:00

24 lines
580 B
C#

using ARW.Model.Models.Business.Crawler;
using ARW.Repository;
using System;
using System.Collections.Generic;
namespace ARW.Service
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
public virtual string LoadHTML(string url)
{
throw new NotImplementedException();
}
public virtual int ParseMovies(string html)
{
throw new NotImplementedException();
}
}
}