예제 #1
0
 public DecoratorGPS(Tank model)
     : base(model, "DecoratorGPS")
 {
 }
예제 #2
0
파일: Decorator.cs 프로젝트: palasa/asp.net
 public Decorator(Tank model, string tname)
 {
     tn        = model;
     listdecor = model.listdecor;
     listdecor.Add(tname);
 }
예제 #3
0
 public DecoratorBoth(Tank model)
     : base(model, "DecoratorBoth")
 {
 }
예제 #4
0
 public DecoratorIA(Tank model)
     : base(model, "DecoratorIA")
 {
 }