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 { /// /// 办公系统克重-数据库操作接口 /// public interface IOA_PaperWeightDAL : ICommonDAL, IPaging, IGetAllModel { IEnumerable 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 getAllPaperWeight(Pagination pa, Guid FirmId, string PaperWeightName, string GoodsName); IEnumerable getAllModelByGoodsId(Pagination pa, string GoodsId); IEnumerable getAllModelByGoodsId(string GoodsId); } }