12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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);
- }
- }
- }
|