annotate Source/Data/Linq/Builder/SequenceConvertPath.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author |
nickolay |
date |
Fri, 27 Oct 2017 18:26:29 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2 using System.Diagnostics;
|
|
3 using System.Linq.Expressions;
|
|
4
|
|
5 using JetBrains.Annotations;
|
|
6
|
|
7 namespace BLToolkit.Data.Linq.Builder
|
|
8 {
|
|
9 [DebuggerDisplay("Path = {Path}, Expr = {Expr}, Level = {Level}")]
|
|
10 public class SequenceConvertPath
|
|
11 {
|
|
12 [NotNull] public Expression Path;
|
|
13 [NotNull] public Expression Expr;
|
|
14 public int Level;
|
|
15 }
|
|
16 }
|