30 lines
875 B
C#
30 lines
875 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MapoSDK
|
|
{
|
|
/// <summary>
|
|
/// Classi generiche x gestioen oggetti Magazzino (Wharehouse)
|
|
/// </summary>
|
|
public class WharehouseData
|
|
{
|
|
public class BatchRec
|
|
{
|
|
public int IdxODL { get; set; } = 0;
|
|
public string IdentRG { get; set; } = "NA";
|
|
public string Product { get; set; } = "Prod";
|
|
public string Variety { get; set; } = "Var";
|
|
public string Supplier { get; set; } = "Suppl";
|
|
public string Notes { get; set; } = "Notes";
|
|
public string ExtDoc { get; set; } = "Doc";
|
|
|
|
public DateTime DateRif { get; set; } = DateTime.Today;
|
|
|
|
public double QtyTot { get; set; } = 0;
|
|
public int NumPack { get; set; } = 0;
|
|
}
|
|
}
|
|
}
|