HamBook – Diff between revs 15 and 16

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 15 Rev 16
Line 7... Line 7...
7   7  
8 namespace HamBook.Radios.Generic 8 namespace HamBook.Radios.Generic
9 { 9 {
10 public class RadioPhase 10 public class RadioPhase
11 { 11 {
Line 12... Line 12...
12 public int Phase { get; private set; } 12 public int Phase { get; set; }
13   13  
14 public RadioPhase(string phase) 14 public RadioPhase(string phase) : this()
15 { 15 {
Line 16... Line 16...
16 Phase = Parse(phase); 16 Phase = Parse(phase);
17 } 17 }
18   18  
19 public RadioPhase(int phase) 19 public RadioPhase(int phase) : this()
Line -... Line 20...
-   20 {
-   21 Phase = Parse(phase);
-   22 }
-   23  
-   24 public RadioPhase()
20 { 25 {
21 Phase = Parse(phase); 26  
22 } 27 }
23   28