1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using CY.IBaseDAL;
| using CY.Model;
| using System.Data;
|
| namespace CY.IDAL
| {
| /// <summary>
| /// 办公系统供应商其他资质-数据库操作接口
| /// </summary>
| public interface IOA_SuppliersOtherQualificationDAL : ICommonDAL, IPaging<OA_SuppliersOtherQualification>, IGetAllModel<OA_SuppliersOtherQualification>
| {
| int DeleteAll(string SuppliersId);
|
| /// <summary>
| /// 返回供应商对应的其他资质
| /// </summary>
| /// <param name="SupplierId"></param>
| /// <returns></returns>
| DataTable selectOtherQuBySuppliersId(string SupplierId);
|
|
| }
| }
|
|