Mercurial > pub > bltoolkit
comparison UnitTests/Fluent/MockDataBase/MockDbDataParameter.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.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 } |