コード例 #1
0
ファイル: Client.cs プロジェクト: AymanGaafar/RepairShop
 public Client()
 {
     Address = new Address();
     ContactInfo = new ContactInfo();
     Jobs = new HashSet<Job>();
 }
コード例 #2
0
ファイル: User.cs プロジェクト: AymanGaafar/RepairShop
 public User() : base()
 {
     Address = new Address();
     ContactInfo = new ContactInfo();
     Jobs = new HashSet<Job>();
 }