using System; using System.Collections.Generic; using System.Text; using InABox.Core; namespace comal.timesheets.Products { class StockMovementShell : Entity { public DateTime Date { get; set; } public string Finish { get; set; } public string Pack { get; set; } public double Qty { get; set; } protected override void Init() { base.Init(); Date = DateTime.MinValue; Finish = ""; Pack = ""; Qty = 0.0; } public StockMovementShell() { } } }