public CategoriaDto(string Nome, string Descricao, bool Composto, CategoriaDto CategoriaPai, ICollection <CategoriaDto> SubCategorias) { this.Nome = Nome; this.Descricao = Descricao; this.Composto = Composto; this.CategoriaPai = CategoriaPai; this.SubCategorias = SubCategorias; }
public ProdutoDto(string Nome, bool Composto, ICollection <ProdutoDto> Produtos, ICollection <ProdutoMaterialDto> Material, CategoriaDto Categoria) { this.Nome = Nome; this.Composto = Composto; this.Produtos = Produtos; this.ProdutoMateriais = Material; this.Categoria = Categoria; }