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.SqlClient;
using System.Data;
namespace CY.IDAL
{
///
/// 办公系统规格-数据库操作接口
///
public interface IOA_SpecificationDAL : ICommonDAL, IPaging, IGetAllModel
{
IEnumerable getAllSpecification(Pagination pa, Guid FirmId, string SpecificationName, string GoodsName, string CommdityName);
Model.OA_Specification getSingleSpecification(string Keyid);
DataTable getAllSpecification(Guid FirmId);
DataTable getAllSpecification(Guid FirmId, string CommodityId, string GoodsId);
IEnumerable getAllModelByGoodsId(string GoodsId);
IEnumerable getAllModelByGoodsId(Pagination pa, string GoodsId);
}
}