/Main/MishraReader.ViewModels/Settings/Developer.cs

# · C# · 132 lines · 122 code · 10 blank · 0 comment · 0 complexity · aa4a39dce7f505239d38986800c5c9ab MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Linq;
  5. using System.Windows.Media;
  6. using GalaSoft.MvvmLight.Command;
  7. using MishraReader.Windows;
  8. namespace MishraReader.ViewModels.Settings
  9. {
  10. public class Developer
  11. {
  12. public static ImageSource DefaultImage;
  13. static Developer()
  14. {
  15. DefaultImage = ImageHelper.LoadImageFromResource(new Uri("pack://application:,,,/MishraReader;component/Assets/DeveloperDefaultImage.jpg"));
  16. }
  17. public Developer()
  18. {
  19. DeveloperImage = DefaultImage;
  20. ShowSiteCommand = new RelayCommand(() => Process.Start("http://" + Site));
  21. SendMailCommand = new RelayCommand(() => Process.Start("mailto:" + Mail));
  22. ShowTwitterCommand = new RelayCommand(() => Process.Start("http://twitter.com/#!/" + Twitter.Substring(1)));
  23. }
  24. public string Company { get; set; }
  25. public ImageSource DeveloperImage { get; private set; }
  26. public string FirstName { get; set; }
  27. public string LastName { get; set; }
  28. public string Mail { get; set; }
  29. public string Name
  30. {
  31. get { return string.Format("{0} {1}", FirstName, LastName.ToUpper()); }
  32. }
  33. public RelayCommand SendMailCommand { get; internal set; }
  34. public RelayCommand ShowSiteCommand { get; internal set; }
  35. public RelayCommand ShowTwitterCommand { get; internal set; }
  36. public string Site { get; set; }
  37. public string Twitter { get; set; }
  38. public static IOrderedEnumerable<Developer> All
  39. {
  40. get
  41. {
  42. return (new[]
  43. {
  44. new Developer
  45. {
  46. FirstName = "David",
  47. LastName = "CATUHE",
  48. Company = "Microsoft",
  49. Site = "blogs.msdn.com/eternalcoding",
  50. Mail = "davca@microsoft.com",
  51. Twitter = "@deltakosh"
  52. },
  53. new Developer
  54. {
  55. FirstName = "Julien",
  56. LastName = "CORIOLAND",
  57. Company = "Infinite Square",
  58. Site = "www.juliencorioland.net",
  59. Mail = "contact@juliencorioland.net",
  60. Twitter = "@beedoo"
  61. },
  62. new Developer
  63. {
  64. FirstName = "Christopher",
  65. LastName = "MANEU",
  66. Company = "Bewise",
  67. Site = "www.maneu.net",
  68. Mail = "christopher@maneu.net",
  69. Twitter = "@cmaneu"
  70. },
  71. new Developer
  72. {
  73. FirstName = "Thomas",
  74. LastName = "LEBRUN",
  75. Company = "Infinite Square",
  76. Site = "blogs.developpeur.org/tom",
  77. Mail = "lebrun_thomas@hotmail.com",
  78. Twitter = "@thomas_lebrun"
  79. },
  80. new Developer
  81. {
  82. FirstName = "Olivier",
  83. LastName = "COURTOIS",
  84. Company = "Bewise",
  85. Site = "www.ocourtois.fr",
  86. Mail = "olivier.courtois@bewise.fr",
  87. Twitter = "@ocourtois"
  88. },
  89. new Developer
  90. {
  91. FirstName = "Jonathan",
  92. LastName = "ANTOINE",
  93. Company = "Infinite Square",
  94. Site = "www.jonathanantoine.com",
  95. Mail = "me@jonathanantoine.com.com",
  96. Twitter = "@jmix90"
  97. },
  98. new Developer
  99. {
  100. FirstName = "Rudy",
  101. LastName = "HUYN",
  102. Company = "Orange Business Services",
  103. Site = "www.rudyhuyn.com",
  104. Mail = "contact@rudyhuyn.com",
  105. Twitter = "@rudyhuyn"
  106. },
  107. new Developer
  108. {
  109. FirstName = "Cyril",
  110. LastName = "SANSUS",
  111. Company = "Bewise",
  112. Site = "blogs.codes-sources.com/vko/",
  113. Mail = "cyril.sansus@gmail.com",
  114. Twitter = "@Vko31"
  115. },
  116. new Developer
  117. {FirstName = "Oren", LastName = "NOVOTNY", Company = "Microsoft", Mail = "oren@novotny.org", Twitter = "@onovotny"},
  118. }).OrderBy(d => d.LastName);
  119. }
  120. }
  121. }
  122. }