comparison Source/DataAccess/ParamDbTypeAttribute.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;
2 using System.Data;
3
4 namespace BLToolkit.DataAccess
5 {
6 [AttributeUsage(AttributeTargets.Parameter)]
7 public class ParamDbTypeAttribute : Attribute
8 {
9 public ParamDbTypeAttribute(DbType dbType)
10 {
11 _dbType = dbType;
12 }
13
14 private readonly DbType _dbType;
15 public DbType DbType
16 {
17 get { return _dbType; }
18 }
19 }
20 }