コード例 #1
0
ファイル: PartDAO.cs プロジェクト: thaond/vdms-sym-project
 public static void DeleteFavorite(Favorite fav)
 {
     PartDAO.PendingDeleteFavorite(fav);
     PartDC.SubmitChanges();
 }
コード例 #2
0
 private void detach_Favorites(Favorite entity)
 {
     this.SendPropertyChanging();
     entity.Dealer = null;
 }
コード例 #3
0
ファイル: PartDAO.cs プロジェクト: thaond/vdms-sym-project
 public static void PendingDeleteFavorite(Favorite fav)
 {
     if (fav != null)
     {
         PartDC.Favorites.DeleteOnSubmit(fav);
     }
 }
コード例 #4
0
 private void attach_Favorites(Favorite entity)
 {
     this.SendPropertyChanging();
     entity.Dealer = this;
 }