Example #1
0
 public void ShowInfo()
 {
     Console.WriteLine(_serviceImpl.ShowInfo());
 }
Example #2
0
 public ClientClass(IServiceSource serviceImpl)
 {
     this._serviceImpl = serviceImpl;
     Console.WriteLine("注入点" + serviceImpl.ShowInfo());
 }