using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 诚信系统诚信档案资料-数据库操作接口 /// public interface IIntegrity_IntegrityCardDAL : ICommonDAL, IPaging, IGetAllModel { Integrity_IntegrityCard SelectModelPage( Guid MemberId); /// /// 根据会员编号以及类型获取诚信名片 /// /// 会员编号 /// 类型 /// Integrity_IntegrityCard SelectListByMemberIdAndRuleType(Guid MemberId, bool RuleType); /// /// 给诚信名片增加诚信 /// /// /// /// /// /// bool GetNowCardByKeyidAndCredit(int? Keyid, int? Credit, string reason, string Operator); /// /// 厂商评价并结束评价 /// /// /// /// /// /// /// bool FirmEndOrderEva(Integrity_EvaluationRecords m_Integrity_EvaluationRecords, Integrity_IntegrityCard m_Integrity_IntegrityCard_Buyer, Integrity_CreditGrowRecord m_Integrity_CreditGrowRecord_Buyer); /// /// 根据会员编号以及类型获取诚信名片图片 /// /// 会员编号 /// 类型 /// string GetLevelImgByMemberIdAndRuleType(Guid MemberId, bool RuleType); } }