using Proxy.Proxies; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Proxy { internal class Client { public void ClientCode(ISubject subject) { subject.Request(); } } }