You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
412 B

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using com.bn388.video.Model;
namespace com.bn388.video.IDAL
{
public interface IDAL_link
{
int insert(Hashtable ht);
int delete(string _where);
int update(Hashtable ht, string _where);
List<link_info> dr(string _where, string order);
link_info SingleRow(string _where);