public void updateCustomer(KundeDto customer)
 {
     WriteActualMethod();
     try
     {
         Component.updateCustomer(DtoConverter.ConvertToEntity(customer));
     }
     catch (LocalOptimisticConcurrencyException <Kunde> ex)
     {
         throw new FaultException <LocalOptimisticConcurrencyException <Kunde> >(ex, ex.Message);
     }
 }