예제 #1
0
파일: Program.cs 프로젝트: niuniuliu/CSharp
 public void SetImplementor(Implementor implementor)
 {
     this.implementor = implementor;
 }
예제 #2
0
 public void SetImplenmentor(Implementor implementor)
 {
     this.implementor = implementor;
 }
 public RefinedAbstaction(Implementor i) : base(i)
 {
 }
예제 #4
0
 /// <inheritdoc />
 protected RefineAbstraction(Implementor implementor) : base(implementor)
 {
 }
예제 #5
0
 /// <inheritdoc />
 protected Abstraction(Implementor implementor)
 {
     _implementor = implementor;
 }
예제 #6
0
 public Abstraction(Implementor i)
 {
     this.implementor = i;
 }