//------------------------------------------------------------------------------ // // Codice generato da un modello. // // Le modifiche manuali a questo file potrebbero causare un comportamento imprevisto dell'applicazione. // Se il codice viene rigenerato, le modifiche manuali al file verranno sovrascritte. // //------------------------------------------------------------------------------ namespace StockManMVC.Models { using System; using System.Collections.Generic; public partial class ItemFlux { public int ID { get; set; } public int ItemID { get; set; } public string LocationID { get; set; } public string MovTypeID { get; set; } public string ExtLocationID { get; set; } public System.DateTime dtMov { get; set; } public int Qta { get; set; } public decimal TotValue { get; set; } public decimal UnitVal { get; set; } public string Note { get; set; } public Nullable dtExport { get; set; } public string OperatorID { get; set; } public string CodDoc { get; set; } public string ModOperatorID { get; set; } public virtual Location Location { get; set; } public virtual MovType MovType { get; set; } public virtual Item Item { get; set; } public virtual Operator Operator { get; set; } public virtual Location Location1 { get; set; } public virtual Operator Operator1 { get; set; } } }