예제 #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);
 }