Example #1
0
 public void AddOfferte(Offerte offerteToInsert)
 {
     OfferterRepository.CreateOfferte(offerteToInsert);
 }
Example #2
0
 public void UpdateOfferte(Offerte offerteToUpdate)
 {
     OfferterRepository.UpdateOfferte(offerteToUpdate);
 }
Example #3
0
 public void RemoveOfferte(Offerte offerte)
 {
     OfferterRepository.RemoveOfferte(offerte);
 }