123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HengshanPaymentTerminal
- {
-
-
-
-
- public class TotalizerDataEventArgs : EventArgs
- {
- public TotalizerDataEventArgs(int nozzleNo, Tuple<long, long> totalizer)
- {
- NozzleNo = nozzleNo;
- Totalizer = totalizer;
- }
- public TotalizerDataEventArgs(Tuple<long, long> totalizer)
- {
- Totalizer = totalizer;
- }
- public int NozzleNo { get; set; }
-
-
-
- public Tuple<long, long> Totalizer { get; set; }
- }
- }
|