Ejemplo n.º 1
0
 public ArchitectureDesign(string value) : base(value)
 {
     this.Name = ArchitectureService.GetTypeValue(value, ArchitectureService.Type.ArchitectureDesign);
 }
Ejemplo n.º 2
0
 public Mapper(string value) : base(value)
 {
     this.Name = ArchitectureService.GetTypeValue(value, ArchitectureService.Type.MapperType);
 }
Ejemplo n.º 3
0
 public Framework(string value) : base(value)
 {
     this.Name = ArchitectureService.GetTypeValue(value, ArchitectureService.Type.FrameworkType);
 }
Ejemplo n.º 4
0
 public IOC(string value) : base(value)
 {
     this.Name = ArchitectureService.GetTypeValue(value, ArchitectureService.Type.IOCType);
 }