0
|
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 } |