コード例 #1
0
ファイル: Branch.cs プロジェクト: kimykunjun/test
 public void AddProductBranch(ProductBranch productBranch)
 {
     productBranch.Branch = this;
     _productBranches.Add(productBranch);
 }
コード例 #2
0
ファイル: Product.cs プロジェクト: kimykunjun/test
 public void AddProductBranch(ProductBranch productBranch)
 {
     productBranch.Product = this;
     _productBranches.Add(productBranch);
 }