12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.HengshanPayTerminal
- {
-
-
-
-
- public class TotalizerDataEventArgs : EventArgs
- {
- public TotalizerDataEventArgs(int nozzleNo, Tuple<int, int> totalizer)
- {
- NozzleNo = nozzleNo;
- Totalizer = totalizer;
- }
- public TotalizerDataEventArgs(Tuple<int, int> totalizer)
- {
- Totalizer = totalizer;
- }
- public int NozzleNo { get; set; }
-
-
-
- public Tuple<int, int> Totalizer { get; set; }
- }
- }
|