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
28
29
30
31
32
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using CY.IBaseDAL;
| using CY.Model;
| using CY.Infrastructure.Query;
| using System.Data;
| namespace CY.IDAL
| {
| /// <summary>
| /// 办公系统克重-数据库操作接口
| /// </summary>
| public interface IOA_PaperWeightDAL : ICommonDAL, IPaging<OA_PaperWeight>, IGetAllModel<OA_PaperWeight>
| {
| IEnumerable<Model.OA_PaperWeight> getAllBrand(Pagination pa, Guid FirmId, string PaperWeightName, string GoodsName);
|
| Model.OA_PaperWeight getSingleBrand(string Keyid);
|
| DataTable getAllBrand(Guid FrimId);
|
| DataTable getPaperWeight(Guid FrimId, string CommodityId, string GoodsId);
|
| bool isExistPaperWeightName(String Name, Guid FirmId, int ID, int GoodsId);
|
| IEnumerable<Model.OA_PaperWeight> getAllPaperWeight(Pagination pa, Guid FirmId, string PaperWeightName, string GoodsName);
|
| IEnumerable<Model.OA_PaperWeight> getAllModelByGoodsId(Pagination pa, string GoodsId);
|
| IEnumerable<Model.OA_PaperWeight> getAllModelByGoodsId(string GoodsId);
| }
| }
|
|