removed redundant qualifiers.

This commit is contained in:
kay.one 2013-07-23 22:35:32 -07:00
commit e89a35522e
35 changed files with 128 additions and 106 deletions

View file

@ -1,4 +1,6 @@
namespace Marr.Data.Mapping
using System.Data;
namespace Marr.Data.Mapping
{
public class ColumnInfo : IColumnInfo
{
@ -7,7 +9,7 @@
IsPrimaryKey = false;
IsAutoIncrement = false;
ReturnValue = false;
ParamDirection = System.Data.ParameterDirection.Input;
ParamDirection = ParameterDirection.Input;
}
public string Name { get; set; }
@ -16,7 +18,7 @@
public bool IsPrimaryKey { get; set; }
public bool IsAutoIncrement { get; set; }
public bool ReturnValue { get; set; }
public System.Data.ParameterDirection ParamDirection { get; set; }
public ParameterDirection ParamDirection { get; set; }
public string TryGetAltName()
{