Ejemplo n.º 1
0
 public IResponsable(IResponsable responsable)
 {
     siguiente = responsable;
 }
 public void atender(IResponsable unResponsable)
 {
     ((Bombero)unResponsable).ApagarIncendio(lugar, lugar.GetCalle());
 }