Exemplo n.º 1
0
 public EF(ushort ID, IISO7816Card owner, DF parent)
 {
     id          = ID;
     this.owner  = owner;
     this.parent = parent;
     parent.Childs.Add(this);
     owner.ObjectChanged(this, ChangeType.Created);
     AC = owner.CreateAC(this);
     SM = owner.CreateSM(this);
 }
Exemplo n.º 2
0
 public EF(ushort ID, IISO7816Card owner, DF parent)
 {
     id = ID;
     this.owner = owner;
     this.parent = parent;
     parent.Childs.Add(this);
     owner.ObjectChanged(this, ChangeType.Created);
     AC = owner.CreateAC(this);
     SM = owner.CreateSM(this);
 }
Exemplo n.º 3
0
 public BSO(ushort ID, IISO7816Card owner, DF parent)
 {
     id          = ID;
     this.owner  = owner;
     this.parent = parent;
     Blocked     = false;
     options     = new byte[8];
     parent.Childs.Add(this);
     owner.ObjectChanged(this, ChangeType.Created);
     AC = owner.CreateAC(this);
     SM = owner.CreateSM(this);
 }