using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.Model;
using CY.Model.Inquiry;
using CY.IBaseDAL;
namespace CY.IDAL.Inquiry
{
///
/// 厂商快速设置表操作接口
///
public interface IFastSetByFirmDAL:ICommonDAL
{
///
/// 获取厂商快速设置
///
///
///
///
IList GetModelList(Guid firmId,Guid customerId);
///
/// 保存厂商快速设置
///
///
///
///
///
bool SaveModelList(IList modelList);
///
/// 判断是否存在
///
///
///
///
///
bool IsExits(Guid firmId, Guid customerId, int printTypeId);
}
}