//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.3053 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace ActiveRecordScaffolding.Data { [Castle.ActiveRecord.ActiveRecordAttribute("[Shippers]")] public partial class Shippers { private int _shipperID; private string _companyName; [Castle.ActiveRecord.PrimaryKeyAttribute(Castle.ActiveRecord.PrimaryKeyType.Identity, "[Shipper ID]")] public virtual int Id { get { return this._shipperID; } set { this._shipperID = value; } } [Castle.ActiveRecord.PropertyAttribute("[Company Name]")] public virtual string CompanyName { get { return this._companyName; } set { this._companyName = value; } } } }