using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
using System.Data;
namespace CY.IDAL
{
///
/// 办公系统供应商其他资质-数据库操作接口
///
public interface IOA_SuppliersOtherQualificationDAL : ICommonDAL, IPaging, IGetAllModel
{
int DeleteAll(string SuppliersId);
///
/// 返回供应商对应的其他资质
///
///
///
DataTable selectOtherQuBySuppliersId(string SupplierId);
}
}