Exemplo n.º 1
0
        static void Main(string[] args)
        {
            BusinessDelegate business = new BusinessDelegate();

            business.setServiceType("EJB");
            Client client = new Client(business);

            client.doTask();
        }
Exemplo n.º 2
0
 public Client(BusinessDelegate businessService)
 {
     this.businessService = businessService;
 }