예제 #1
0
 /// <summary>
 /// 建構子
 /// </summary>
 /// <param name="implementor">實作</param>
 public PrintSpecifiedTimes(AbstractPrintImplementor implementor) : base(implementor)
 {
 }
예제 #2
0
 /// <summary>
 /// 建構子
 /// </summary>
 /// <param name="implementor">實作</param>
 public PrintWord(AbstractPrintImplementor implementor)
 {
     this.Implementor = implementor;
 }