Mercurial > pub > bltoolkit
annotate Source/Data/OperationExceptionEventArgs.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author | nickolay |
---|---|
date | Fri, 27 Oct 2017 18:26:29 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 namespace BLToolkit.Data |
2 { | |
3 public delegate void OperationExceptionEventHandler(object sender, OperationExceptionEventArgs ea); | |
4 | |
5 public class OperationExceptionEventArgs : OperationTypeEventArgs | |
6 { | |
7 private readonly DataException _exception; | |
8 public DataException Exception | |
9 { | |
10 get { return _exception; } | |
11 } | |
12 | |
13 public OperationExceptionEventArgs(OperationType operation, DataException exception) | |
14 : base (operation) | |
15 { | |
16 _exception = exception; | |
17 } | |
18 } | |
19 } |