0
|
1 using System.Data;
|
|
2
|
|
3 namespace BLToolkit.Fluent.Test.MockDataBase
|
|
4 {
|
|
5 /// <summary>
|
|
6 /// IDbDataParameter
|
|
7 /// </summary>
|
|
8 public class MockDbDataParameter : IDbDataParameter
|
|
9 {
|
|
10 public DbType DbType { get; set; }
|
|
11
|
|
12 public ParameterDirection Direction { get; set; }
|
|
13
|
|
14 public bool IsNullable
|
|
15 {
|
|
16 get { throw new System.NotImplementedException(); }
|
|
17 }
|
|
18
|
|
19 public string ParameterName { get; set; }
|
|
20
|
|
21 public string SourceColumn { get; set; }
|
|
22
|
|
23 public DataRowVersion SourceVersion { get; set; }
|
|
24
|
|
25 public object Value { get; set; }
|
|
26
|
|
27 public byte Precision { get; set; }
|
|
28
|
|
29 public byte Scale { get; set; }
|
|
30
|
|
31 public int Size { get; set; }
|
|
32 }
|
|
33 } |