HamBook – Diff between revs 1 and 54
?pathlinks?
Rev 1 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line -... | |||
1 | using HamBook.Utilities.Serialization; |
- | ||
2 | using System.Collections.Generic; |
1 | using System.Collections.Generic; |
|
3 | using System.Xml.Schema; |
2 | using System.Xml.Schema; |
|
Line 4... | Line 3... | |||
4 | |
3 | |
|
5 | namespace HamBook.Utilities.Serialization |
4 | namespace HamBook.Utilities.Serialization |
|
6 | { |
5 | { |
|
Line 24... | Line 23... | |||
24 | { |
23 | { |
|
25 | Result = result; |
24 | Result = result; |
|
26 | } |
25 | } |
|
Line 27... | Line 26... | |||
27 | |
26 | |
|
28 | public SerializationSuccess(T result, |
27 | public SerializationSuccess(T result, |
|
29 | List<ValidationEventArgs> validationEventArgs) : this(result) |
28 | List<ValidationEventArgs> validationEventArgs) : this(result) |
|
30 | { |
29 | { |
|
31 | ValidationEventArgs = validationEventArgs; |
30 | ValidationEventArgs = validationEventArgs; |
|
Line 32... | Line 31... | |||
32 | } |
31 | } |