TFS_ANTIGUO/PrendarioDavivienda/SlnDavivienda_Expomovil2017/ULA.Davivienda.PrendarioModel/Prendario/EstiloVehiculo.cs

30 lines
1,018 B
C#

namespace ULA.Davivienda.PrendarioModel.Prendario
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("Catalogos.EstiloVehiculo")]
public partial class EstiloVehiculo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public EstiloVehiculo()
{
Cotizacion = new HashSet<Cotizacion>();
}
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdEstiloVehiculo { get; set; }
[StringLength(50)]
public string Descripcion { get; set; }
public bool? Estado { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Cotizacion> Cotizacion { get; set; }
}
}