39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloCalibracaoPadraoEnsaios
|
|
{
|
|
public ModeloCalibracaoPadraoEnsaios()
|
|
{
|
|
ID_CAL_PADRAO_ENSAIOS = 0;
|
|
CODIGO = string.Empty;
|
|
COD_CALIBRACAO = string.Empty;
|
|
DESCRICAO = string.Empty;
|
|
MINIMO = string.Empty;
|
|
MAXIMO = string.Empty;
|
|
OBTIDO = string.Empty;
|
|
UNIDADE = string.Empty;
|
|
}
|
|
public ModeloCalibracaoPadraoEnsaios(int iD_CAL_PADRAO_ENSAIOS, string cODIGO, string cOD_CALIBRACAO, string dESCRICAO, string mINIMO, string mAXIMO, string oBTIDO, string uNIDADE)
|
|
{
|
|
ID_CAL_PADRAO_ENSAIOS = iD_CAL_PADRAO_ENSAIOS;
|
|
CODIGO = cODIGO;
|
|
COD_CALIBRACAO = cOD_CALIBRACAO;
|
|
DESCRICAO = dESCRICAO;
|
|
MINIMO = mINIMO;
|
|
MAXIMO = mAXIMO;
|
|
OBTIDO = oBTIDO;
|
|
UNIDADE = uNIDADE;
|
|
}// Construtor sem parâmetros
|
|
|
|
public int ID_CAL_PADRAO_ENSAIOS { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string COD_CALIBRACAO { get; set; }
|
|
public string DESCRICAO { get; set; }
|
|
public string MINIMO { get; set; }
|
|
public string MAXIMO { get; set; }
|
|
public string OBTIDO { get; set; }
|
|
public string UNIDADE { get; set; }
|
|
}
|
|
} |