LevelOS-Core/MLL/ModeloCalibracaoPadrao.cs

28 lines
916 B
C#

using System;
namespace MLL
{
public class ModeloCalibracaoPadrao
{
public ModeloCalibracaoPadrao(int iD_CALIBRACAO_PADRAO, string cODIGO, string oS_NUMERO, string dATA, string tEMP, string hUMIDADE, string rESPONSABEL, string oBSERV)
{
ID_CALIBRACAO_PADRAO = iD_CALIBRACAO_PADRAO;
CODIGO = cODIGO;
OS_NUMERO = oS_NUMERO;
DATA = dATA;
TEMP = tEMP;
HUMIDADE = hUMIDADE;
RESPONSABEL = rESPONSABEL;
OBSERV = oBSERV;
}
public int ID_CALIBRACAO_PADRAO { get; set; }
public string CODIGO { get; set; }
public string OS_NUMERO { get; set; }
public string DATA { get; set; }
public string TEMP { get; set; }
public string HUMIDADE { get; set; }
public string RESPONSABEL { get; set; }
public string OBSERV { get; set; }
}
}