Exemplo n.º 1
0
        static void Main(string[] args)
        {
            IModelFacade facade = (new ConfigurationHandler()).Load();
            IModelObject x      = facade.Read(1001);

            Console.WriteLine(x.ToString());
            Console.ReadLine();
        }
Exemplo n.º 2
0
 public int CompareTo(IModelObject other)
 {
     return(ToString().CompareTo(other.ToString()));
 }