public static void Main()
Adapter a = new Adapter();
Customer charlie = a.GetByID("Charlie");
Console.WriteLine(charlie);
public Customer GetByID(string s)
Customer c = internalBO.GetByID(s);
public Customer GetByID(string s)
Customer c = new Customer();
public string id {get;set;}
public override string ToString()