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