Exemple #1
0
 /// <summary>
 /// 删除网站数据
 /// </summary>
 /// <returns></returns>
 public static int DeleteWebInfo(WebInfo obj)
 {
     return(WebInfo_Service.DeleteWebInfo(obj));
 }
Exemple #2
0
 /// <summary>
 /// 修改网站数据
 /// </summary>
 /// <returns></returns>
 public static int UpdateWebInfo(WebInfo obj)
 {
     return(WebInfo_Service.UpdateWebInfo(obj));
 }
Exemple #3
0
 /// <summary>
 /// 根据条件查询网站信息
 /// </summary>
 /// <param name="demandType">查询类型(实体类中的所有属性选其一)</param>
 /// <param name="demandContent">查询参数(要查询的条件参数)</param>
 /// <returns></returns>
 public static WebInfo GetWebInfoByConn(string demandType, string demandContent)
 {
     return(WebInfo_Service.GetWebInfoByConn(demandType, demandContent));
 }
Exemple #4
0
 /// <summary>
 /// 添加网站数据
 /// </summary>
 /// <returns></returns>
 public static int InsertWebInfo(WebInfo obj)
 {
     return(WebInfo_Service.InsertWebInfo(obj));
 }
Exemple #5
0
 /// <summary>
 /// 获取全部网站信息
 /// </summary>
 /// <returns></returns>
 public static List <WebInfo> GetAllWebInfo()
 {
     return(WebInfo_Service.GetAllWebInfo());
 }