示例#1
0
 public void SetNext(BancoChain forma)
 {
     if (next == null)
     {
         next = forma;
     }
     else
     {
         next.SetNext(forma);
     }
 }
示例#2
0
 public BancoChain(BancoEnum id)
 {
     next = null;
     identificadorBanco = id;
 }