using System.ComponentModel.DataAnnotations;
public interface IVolumable
[DataContract(IsReference = true)]
public class Camion : IVolumable
public void DoSomething()
Console.WriteLine("Camion::DoSomething()");
public class Compteur : IVolumable
public void DoSomething()
Console.WriteLine("Compteur::DoSomething()");
public static void Main()
Camion camion = new Camion();
Compteur compteur = new Compteur();