annotate Source/ServiceModel/LinqServiceResult.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.Collections.Generic;
|
|
3
|
|
4 namespace BLToolkit.ServiceModel
|
|
5 {
|
|
6 public class LinqServiceResult
|
|
7 {
|
|
8 public int FieldCount { get; set; }
|
|
9 public int RowCount { get; set; }
|
|
10 public Guid QueryID { get; set; }
|
|
11 public string[] FieldNames { get; set; }
|
|
12 public Type[] FieldTypes { get; set; }
|
|
13 public Type[] VaryingTypes { get; set; }
|
|
14 public List<string[]> Data { get; set; }
|
|
15 }
|
|
16 }
|