⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icustomer.cs

📁 汽车销售公司ERP进销存系统 汽车销售公司ERP进销存系统
💻 CS
字号:
using System;
using CallCenter.Modules;
using System.Collections;
using System.Data;

namespace CallCenter.IDAL
{
	/// <summary>
	/// 客户信息
	/// </summary>
	public interface ICustomer
	{
		int addCustomer(CustomerInfo info);
		int updateCustomer(CustomerInfo info);
		int delCustomer(string ids);
		CustomerInfo getCustomerById(int id);
		ArrayList getCustomerByIds(string ids);
		ArrayList getCustomerType();
		DataSet getCustomerByIds_DataSet(string ids,string tableName);
		//ArrayList getCustomerByTAN(string telnumber,String cname);
		ArrayList queryCustomer(CustomerInfo info);
		DataSet queryCustomer_DataSet(CustomerInfo info,string tableName);
		DataSet getCustomerType_DataSet(string tableName);

		ArrayList getCustomerFromOtherDB(CustomerInfo info);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -