//------------------------------------------------------------------------------ // // 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("[Suppliers]")] public partial class Suppliers { private int _supplierID; private string _companyName; private string _contactName; private string _contactTitle; private string _address; private string _city; private string _region; private string _postalCode; private string _country; private string _phone; private string _fax; [Castle.ActiveRecord.PrimaryKeyAttribute(Castle.ActiveRecord.PrimaryKeyType.Identity, "[Supplier ID]")] public virtual int Id { get { return this._supplierID; } set { this._supplierID = value; } } [Castle.ActiveRecord.PropertyAttribute("[Company Name]")] public virtual string CompanyName { get { return this._companyName; } set { this._companyName = value; } } [Castle.ActiveRecord.PropertyAttribute("[Contact Name]")] public virtual string ContactName { get { return this._contactName; } set { this._contactName = value; } } [Castle.ActiveRecord.PropertyAttribute("[Contact Title]")] public virtual string ContactTitle { get { return this._contactTitle; } set { this._contactTitle = value; } } [Castle.ActiveRecord.PropertyAttribute("[Address]")] public virtual string Address { get { return this._address; } set { this._address = value; } } [Castle.ActiveRecord.PropertyAttribute("[City]")] public virtual string City { get { return this._city; } set { this._city = value; } } [Castle.ActiveRecord.PropertyAttribute("[Region]")] public virtual string Region { get { return this._region; } set { this._region = value; } } [Castle.ActiveRecord.PropertyAttribute("[Postal Code]")] public virtual string PostalCode { get { return this._postalCode; } set { this._postalCode = value; } } [Castle.ActiveRecord.PropertyAttribute("[Country]")] public virtual string Country { get { return this._country; } set { this._country = value; } } [Castle.ActiveRecord.PropertyAttribute("[Phone]")] public virtual string Phone { get { return this._phone; } set { this._phone = value; } } [Castle.ActiveRecord.PropertyAttribute("[Fax]")] public virtual string Fax { get { return this._fax; } set { this._fax = value; } } } }