username@email.com
2025-05-09 66beb245e516809514642c00922f0339bf760518
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_BrandDAL : ICommonDAL, IPaging<OA_Brand>, IGetAllModel<OA_Brand>
    {
        IEnumerable<Model.OA_Brand> getAllBrand(Pagination pa, Guid FirmId, string BrandName, string CommodityName, string GoodsName);
 
        Model.OA_Brand getSingleBrand(string Keyid);
 
        DataTable getAllBrand(Guid FrimId, string CommodityId, string GoodsId);
 
        string GetMaxOrderNum(Guid FirmId, string TName);
 
        string GetMaxOrderNumMemberId(Guid FirmId, string TName);
 
        IEnumerable<Model.OA_Brand> getAllBrandnew(Pagination pa, Guid FirmId, string BrandName, string GoodsName, string CommdityName);
 
        IEnumerable<Model.OA_Brand> getAllModelByGoodsId(string GoodsId);
 
        IEnumerable<Model.OA_Brand> getAllModelByGoodsId(Pagination pa, string GoodsId);
    }
}