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
463 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_guest
{
int insert(Hashtable ht);
int delete(string _where);
int update(Hashtable ht, string _where);
List<guest_info> ds(string top, string _where);
List<guest_info> ds(string top, string _where, Wuqi.Webdiyer.AspNetPager aspnetpager);