public override string Mostrar(Banco b)
 {
     return(b.Mostrar());
 }
Example #2
0
 public abstract string Mostrar(Banco b);
Example #3
0
 public override string Mostrar(Banco b)
 {
     return(base.Mostrar(b));
 }