Esempio n. 1
0
 public static SocialInterface NewForDino()
 {
     var social = new SocialInterface
     {
         Twitter = "http://twitter.com/despos",
         Facebook = "",
         Wordpress = "http://software2cents.wordpress.com",
         LinkedIn = "http://it.linkedin.com/pub/dino-esposito/4/221/9a3/",
         Google = "http://plus.google.com/108569971473006651006"
     };
     return social;
 }
Esempio n. 2
0
 public static SocialInterface NewForAndrea()
 {
     var social = new SocialInterface
     {
         Twitter = "http://twitter.com/andysal74",
         Facebook = "http://www.facebook.com/ManagedDesigns",
         Wordpress = "",
         LinkedIn = "http://it.linkedin.com/in/andysal",
         Google = "http://plus.google.com/+AndreaSaltarello"
     }; 
     return social;
 }
Esempio n. 3
0
 public ViewModelBase()
 {
     Dino   = SocialInterface.NewForDino();
     Andrea = SocialInterface.NewForAndrea();
 }