comparison UnitTests/Fluent/MockDataBase/MockCommandData.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
1 using System.Collections.Generic;
2
3 namespace BLToolkit.Fluent.Test.MockDataBase
4 {
5 public class MockCommandData
6 {
7 public int NonQueryResult { get; set; }
8
9 public MockReaderData ReaderResult { get; set; }
10
11 public object ScalarResult { get; set; }
12
13 public string CommandText { get; set; }
14
15 public bool IsUsing { get; set; }
16
17 public List<MockDbDataParameter> Parameters { get; set; }
18
19 public Dictionary<string, int> Fields { get; set; }
20
21 public List<string> Tables { get; set; }
22 }
23 }