#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using
System;
using
System.Data;
using
System.Linq;
using
System.Linq.Expressions;
using
System.Data.Common;
using
System.Collections.Generic;
using
Telerik.OpenAccess;
namespace
Berlin.Polizei.LKA.KooStBetrug.DatenModell
{
[Table(
"Katalog_Fahrzeugart"
)]
public
partial
class
clsDatenFahrzeug
{
private
Guid iD;
[Column(
"ID"
, OpenAccessType = OpenAccessType.Guid, IsPrimaryKey =
true
, SqlType =
"uniqueidentifier"
)]
[Storage(
"iD"
)]
public
virtual
Guid ID
{
get
{
return
this
.iD;
}
set
{
this
.iD = value;
}
}
private
System.Nullable<System.Guid> fahrzeugart;
[Column(
"Fahrzeugart"
, OpenAccessType = OpenAccessType.Varchar, Length = 50, SqlType =
"nvarchar"
)]
[Storage(
"fahrzeugart"
)]
public
virtual
System.Nullable<System.Guid> Fahrzeugart
{
get
{
return
this
.fahrzeugart;
}
set
{
this
.fahrzeugart = value;
}
}
private
DateTime? lastUpdate;
[Column(
"LastUpdate"
, OpenAccessType = OpenAccessType.DateTime, IsNullable =
true
, SqlType =
"datetime"
)]
[Storage(
"lastUpdate"
)]
public
virtual
DateTime? LastUpdate
{
get
{
return
this
.lastUpdate;
}
set
{
this
.lastUpdate = value;
}
}
private
DateTime? createDate;
[Column(
"CreateDate"
, OpenAccessType = OpenAccessType.DateTime, IsNullable =
true
, SqlType =
"datetime"
)]
[Storage(
"createDate"
)]
public
virtual
DateTime? CreateDate
{
get
{
return
this
.createDate;
}
set
{
this
.createDate = value;
}
}
private
string
autor;
[Column(
"Autor"
, OpenAccessType = OpenAccessType.Varchar, IsNullable =
true
, Length = 20, SqlType =
"nvarchar"
)]
[Storage(
"autor"
)]
public
virtual
string
Autor
{
get
{
return
this
.autor;
}
set
{
this
.autor = value;
}
}
private
string
kennzeichen;
[Column()]
[Storage(
"kennzeichen"
)]
public
virtual
string
Kennzeichen
{
get
{
return
this
.kennzeichen;
}
set
{
this
.kennzeichen = value;
}
}
private
string
herstellerTyp;
[Column()]
[Storage(
"herstellerTyp"
)]
public
virtual
string
Hersteller_Typ
{
get
{
return
this
.herstellerTyp;
}
set
{
this
.herstellerTyp = value;
}
}
private
string
farbe;
[Column()]
[Storage(
"farbe"
)]
public
virtual
string
Farbe
{
get
{
return
this
.farbe;
}
set
{
this
.farbe = value;
}
}
private
clsKatalogFahrzeugart clsKatalogFahrzeugart;
[ForeignKeyAssociation(SharedFields =
"Fahrzeugart"
, TargetFields =
"iD"
)]
[Storage(
"clsKatalogFahrzeugart"
)]
public
virtual
clsKatalogFahrzeugart ClsKatalogFahrzeugart
{
get
{
return
this
.clsKatalogFahrzeugart;
}
set
{
this
.clsKatalogFahrzeugart = value;
}
}
}
}