Subversion Repository Public Repository

Nextrek

Diff Revisions 43 vs 44 for /WindowsPhone/NotizieTL/NotizieTL/ArticoloPreferito.cs

Diff revisions: vs.
  @@ -13,10 +13,14 @@
13 13 {
14 14 public class ArticoloPreferito : Articolo
15 15 {
16 - public bool IsChecked { get; set; }
16 + bool isChecked;
17 17
18 - public ArticoloPreferito(String titolo, String link, String testo, String testoFull, String dataPub, String nota, bool isChecked)
19 - : base(titolo, link, testo, testoFull, dataPub, nota)
18 + public bool IsChecked { get { return isChecked; } set { isChecked = value; } }
19 +
20 + public ArticoloPreferito() : base() { }
21 +
22 + public ArticoloPreferito(String titolo, String link, String testo, String testoFull, String dataPub, String nota, String icona, bool isChecked)
23 + : base(titolo, link, testo, testoFull, dataPub, nota, icona)
20 24 {
21 25 this.IsChecked = isChecked;
22 26 }