
function Ingrediente2()
{
	this.id="";
	this.name="";
	this.alias="";
	this.cal="";
	this.costEmb="";
	this.embalagem="";
	this.pesoEmbalage="";
	this.isProduct="";
}

function Ingrediente()
{
	this.id="";
	this.dept="";
	this.name="";
	this.user="";
	this.medida="";
	this.isNivel="";
	this.hasVariacao="";
	this.variacao="";
	this.isVariacaoPadrao="";
	this.cal="";
	this.costEmb="";
	this.embalagem="";
	this.pesoEmbalage="";
	this.estoque="";
	this.isProduct="";
	this.variacoes=[];
/*[793,1,"Įgua",1,48,false,false,"",false,0,0,"litro",1000,"",false]
id_Ingrediente,
fk_Departamento,
ds_Ingrediente,
fk_Usuario,
fk_MedidaCaseira,
sn_Nivel,
sn_Variacao,
ds_Variacao, 
sn_VariacaoPadrao,
nr_Caloria,
nr_CustoEmbalagem
*/
}

function Departamento()
{
	this.id="";
	this.name="";
	this.ingredientes=[];
}
Departamento.colecao=[Ingrediente];

function IngLetter()
{
	this.ct="";
	this.letter="";
}

function IngSearch()
{
	this.searchStr="";
	this.page=1;
}

try {
	c.control("Ingrediente", "loaded");
} catch (e) {
}
