//------------------------------------------------------------------------------
//
// 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("[Orders]")]
public partial class Orders {
private int _orderID;
private string _shipName;
private string _shipAddress;
private string _shipCity;
private string _shipRegion;
private string _shipPostalCode;
private string _shipCountry;
private System.Nullable _orderDate;
private System.Nullable _requiredDate;
private System.Nullable _shippedDate;
private System.Nullable _freight;
[Castle.ActiveRecord.PrimaryKeyAttribute(Castle.ActiveRecord.PrimaryKeyType.Assigned, "[Order ID]")]
public virtual int Id {
get {
return this._orderID;
}
set {
this._orderID = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship Name]")]
public virtual string ShipName {
get {
return this._shipName;
}
set {
this._shipName = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship Address]")]
public virtual string ShipAddress {
get {
return this._shipAddress;
}
set {
this._shipAddress = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship City]")]
public virtual string ShipCity {
get {
return this._shipCity;
}
set {
this._shipCity = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship Region]")]
public virtual string ShipRegion {
get {
return this._shipRegion;
}
set {
this._shipRegion = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship Postal Code]")]
public virtual string ShipPostalCode {
get {
return this._shipPostalCode;
}
set {
this._shipPostalCode = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Ship Country]")]
public virtual string ShipCountry {
get {
return this._shipCountry;
}
set {
this._shipCountry = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Order Date]")]
public virtual System.Nullable OrderDate {
get {
return this._orderDate;
}
set {
this._orderDate = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Required Date]")]
public virtual System.Nullable RequiredDate {
get {
return this._requiredDate;
}
set {
this._requiredDate = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Shipped Date]")]
public virtual System.Nullable ShippedDate {
get {
return this._shippedDate;
}
set {
this._shippedDate = value;
}
}
[Castle.ActiveRecord.PropertyAttribute("[Freight]")]
public virtual System.Nullable Freight {
get {
return this._freight;
}
set {
this._freight = value;
}
}
}
}