Exemplo n.º 1
0
 public CustomParameterAttribute(string name = null, SQLPropType type = SQLPropType.INT, int length = 0, bool isnull = true)
 {
     Name       = name;
     Type       = type;
     Length     = length;
     IsNullable = isnull;
 }
Exemplo n.º 2
0
 public OutputParameterAttribute(string name = null, SQLPropType type = SQLPropType.INT, int length = 0, bool isnull = true)
     : base(name, type, length, isnull)
 {
 }