Пример #1
0
 public DbParamValue(string name, object value, DbParamType dbType, ParameterDirection direction)
     : base(name, dbType)
 {
     Value = value;
     Direction = direction;
 }
Пример #2
0
 public DbParamValue(string name, object value, DbParamType dbType)
     : this(name, value, dbType, ParameterDirection.Input)
 {
 }
Пример #3
0
 public DbParam(string name, DbParamType dbType)
 {
     Name = name;
     DbType = dbType;
 }