| 1234567891011121314151617181920212223242526272829 |
- 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()
- {
- }
- }
- }
|