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