예제 #1
0
 public Client(string name, Barbershop barbershop)
 {
     _name = name;
     DoActions(barbershop);
 }
예제 #2
0
        static void Main(string[] args)
        {
            Barbershop barbershop = new Barbershop();

            barbershop.Working();
        }