Files
StockMan/StockManMVC/Models/Stock.cs
T
Samuele E. Locatelli b3caeaaf8b Refresh classi stock
x errore naming ref esterna LocationID...
2016-09-20 19:04:30 +02:00

35 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace StockManMVC.Models
{
using System;
using System.Collections.Generic;
public partial class Stock
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Stock()
{
this.StockMov = new HashSet<StockMov>();
}
public int ItemID { get; set; }
public string LocationID { get; set; }
public int QtyConf { get; set; }
public string Note { get; set; }
public Nullable<System.DateTime> dtLastUpd { get; set; }
public virtual Items Items { get; set; }
public virtual Location Location { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<StockMov> StockMov { get; set; }
}
}