Esempio n. 1
0
 public static void DeleteFavorite(Favorite fav)
 {
     PartDAO.PendingDeleteFavorite(fav);
     PartDC.SubmitChanges();
 }
Esempio n. 2
0
 private void detach_Favorites(Favorite entity)
 {
     this.SendPropertyChanging();
     entity.Dealer = null;
 }
Esempio n. 3
0
 public static void PendingDeleteFavorite(Favorite fav)
 {
     if (fav != null)
     {
         PartDC.Favorites.DeleteOnSubmit(fav);
     }
 }
Esempio n. 4
0
 private void attach_Favorites(Favorite entity)
 {
     this.SendPropertyChanging();
     entity.Dealer = this;
 }