Exemplo n.º 1
0
 public DiagnosticReferral(String serialNumber, DateTime date, string notes, DiagnosticType diagnosticType) : base(serialNumber, date, notes)
 {
     this.diagnosticType = diagnosticType;
 }
Exemplo n.º 2
0
 public DiagnosticReferral(DateTime date, string notes, DiagnosticType diagnosticType) : base(Guid.NewGuid().ToString(), date, notes)
 {
     this.diagnosticType = diagnosticType;
 }