温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:风讯dotNETCMSv1.0免安装版源码
当前文件:
FooSunCMS/Foosun.CMS/Rss.cs[1K,2009-6-12 11:42:42],打开代码结构图
FooSunCMS/Foosun.CMS/Rss.cs[1K,2009-6-12 11:42:42],打开代码结构图1//=========================================================== 2
//== (c)2007 Foosun Inc. by dotNETCMS 1.0 == 3
//== Forum:bbs.foosun.net == 4
//== website:www.foosun.net == 5
//== Address:NO.109 HuiMin ST.,Chengdu ,China == 6
//== TEL:86-28-85098980/66026180 == 7
//== qq:655071,MSN:ikoolls@gmail.com == 8
//== Code By ZhenJiang.Wang == 9
//=========================================================== 10
using System; 11
using System.Collections.Generic; 12
using System.Text; 13
using System.Data; 14
using Foosun.DALFactory; 15
using Foosun.Model; 16
17
namespace Foosun.CMS 18
{ 19
public class Rss 20
{ 21
private IRss dal; 22
public Rss() 23
{ 24
dal = Foosun.DALFactory.DataAccess.CreateRss(); 25
} 26
public int sel(string ClassID) 27
{ 28
return dal.sel(ClassID); 29
} 30
31
public DataTable getxmllist(string ClassID) 32
{ 33
DataTable dt = dal.getxmllist(ClassID); 34
return dt; 35
} 36
37
} 38
} 39






}
}