using System; namespace Collections { public class CompanyAddrImpl: CompanyAddr { public CompanyAddrImpl() { } public CompanyAddrImpl( bool b) { } public CompanyAddrImpl( String a_strName, String a_strZip, String a_strCity ) { Name = a_strName; Zip = a_strZip; City = a_strCity; } override public string theName( ) { return this.Name; } override public string theZipCode( ) { return this.Zip; } override public string theCity( ) { return this.City; } } }