Ejemplo n.º 1
0
 public EMVCommand(ISO7816Protocol.Cla cla, EMVInstructionEnum ins, byte[] data, byte p1, byte p2)
     : base((byte)cla, (byte)ins, p1, p2, data, 0x00)
 {
     ApduResponseType = typeof(EMVResponse);
 }
Ejemplo n.º 2
0
        //public GPCommand(GPInstructionEnum ins, byte[] data, byte p1, byte p2)
        //    : base((byte)ISO7816Protocol.Cla.CompliantCmd0x, (byte)ins, p1, p2, data, 0x00)
        //{
        //    ApduResponseType = typeof(GPResponse);
        //}

        public GPCommand(ISO7816Protocol.Cla cla, GPInstructionEnum ins, byte[] data, byte p1, byte p2, byte le = 0x00)
            : base((byte)cla, (byte)ins, p1, p2, data, le)
        {
            ApduResponseType = typeof(GPResponse);
        }