Business Logic Toolkit for .NET
www.bltoolkit.net
|  Home   |  Download   |  Documentation   |  Discussions   |  License   |

  Source.DataAccess.ParamTypeNameAttribute.cs

 
using System;

namespace BLToolkit.DataAccess
{
    [AttributeUsage(AttributeTargets.Parameter)]
    public class ParamTypeNameAttribute : Attribute
    {
        public ParamTypeNameAttribute(string typeName)
        {
            _typeName = typeName;
        }

        private readonly string _typeName;
        public           string  TypeName
        {
            get { return _typeName; }
        }
    }
}
 
© 2010 www.bltoolkit.net
support@bltoolkit.net