コード例 #1
0
 public PerfomanceSubtype(string nameLatin, string nameCyrillic, PerfomanceType perfomanceType)
 {
     this.Id = new Guid();
     this.NameLatin = nameLatin;
     this.NameCyrillic = nameCyrillic;
     this.PerfomanceType = perfomanceType;
 }
コード例 #2
0
 public PerfomanceSubtype(Guid id, string nameLatin, string nameCyrillic, PerfomanceType perfomanceType)
     : this(nameLatin, nameCyrillic, perfomanceType)
 {
     this.Id = id;
 }