using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TellerSystem.Contract.Contracts
{
public interface IEvaluationContract
{
bool PreviewEvaluation(EvaluationRecord record);
}
///
/// 预评价的记录
///
public class EvaluationRecord
{
///
/// 账号
///
public string AccNo { get; set; }
///
/// 身份证号
///
public string IdNo { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 金额
///
public string Amt { get; set; }
public override string ToString()
{
return string.Format("EvaluationRecord=[AccNo:{0},IdNo:{1},Name:{2},Amt:{3}]", AccNo, IdNo, Name, Amt);
}
}
}