コード例 #1
0
 /// <summary>
 /// Enregistre ou met a jour un parking
 /// </summary>
 public void Save()
 {
     if (this.Id == Guid.Empty)
     {
         this.Metier.Id = Guid.NewGuid();
         ServiceParking.Insert(this.Metier);
     }
     else
     {
         ServiceParking.Update(this.Metier);
     }
 }