LevelOS/MLL/ModeloOrdensDeslocamento.cs

61 lines
2.3 KiB
C#

using System;
using System.Security.Cryptography;
namespace MLL
{
public class ModeloOrdensDeslocamento
{
public ModeloOrdensDeslocamento()
{
ID_ORDENS_DESLOCAMENTO = 0;
CODIGO = string.Empty;
COD_ORDEM = string.Empty;
DIA = string.Empty;
HORA_SAI = string.Empty;
KM_SAI = string.Empty;
HORA_CHEGA = string.Empty;
KM_CHEGA = string.Empty;
HORA_VOLTA_SAI = string.Empty;
KM_VOLTA_SAI = string.Empty;
HORA_VOLTA = string.Empty;
KM_VOLTA = string.Empty;
ALIMENTA = string.Empty;
HOSPEDA = string.Empty;
DATA_CADASTRO = string.Empty;
}
public ModeloOrdensDeslocamento(int iD_ORDENS_DESLOCAMENTO, string cODIGO, string cOD_ORDEM, string dIA, string hORA_SAI, string kM_SAI, string hORA_CHEGA, string kM_CHEGA, string hORA_VOLTA_SAI, string kM_VOLTA_SAI, string hORA_VOLTA, string kM_VOLTA, string aLIMENTA, string hOSPEDA, string dATA_CADASTRO)
{
ID_ORDENS_DESLOCAMENTO = iD_ORDENS_DESLOCAMENTO;
CODIGO = cODIGO;
COD_ORDEM = cOD_ORDEM;
DIA = dIA;
HORA_SAI = hORA_SAI;
KM_SAI = kM_SAI;
HORA_CHEGA = hORA_CHEGA;
KM_CHEGA = kM_CHEGA;
HORA_VOLTA_SAI = hORA_VOLTA_SAI;
KM_VOLTA_SAI = kM_VOLTA_SAI;
HORA_VOLTA = hORA_VOLTA;
KM_VOLTA = kM_VOLTA;
ALIMENTA = aLIMENTA;
HOSPEDA = hOSPEDA;
DATA_CADASTRO = dATA_CADASTRO;
}
public int ID_ORDENS_DESLOCAMENTO { get; set; }
public string CODIGO { get; set; }
public string COD_ORDEM { get; set; }
public string DIA { get; set; }
public string HORA_SAI { get; set; }
public string KM_SAI { get; set; }
public string HORA_CHEGA { get; set; }
public string KM_CHEGA { get; set; }
public string HORA_VOLTA_SAI { get; set; }
public string KM_VOLTA_SAI { get; set; }
public string HORA_VOLTA { get; set; }
public string KM_VOLTA { get; set; }
public string ALIMENTA { get; set; }
public string HOSPEDA { get; set; }
public string DATA_CADASTRO { get; set; }
}
}