Class InvBEArtigoArmazens
Classe que encapsula a definição de linhas de Artigos Armazem.
Implements
System.Collections.Generic.IEnumerable<InvBEArtigoArmazem>
System.Collections.IEnumerable
Inherited Members
Namespace: InvBE100
Assembly: InvBE100.dll
Syntax
public class InvBEArtigoArmazens : InvBaseBE, IEnumerable<InvBEArtigoArmazem>, IEnumerable
Constructors
InvBEArtigoArmazens()
Construtor da classe.
Declaration
public InvBEArtigoArmazens()
InvBEArtigoArmazens(IEnumerable<InvBEArtigoArmazem>)
Declaration
public InvBEArtigoArmazens(IEnumerable<InvBEArtigoArmazem> items)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<InvBEArtigoArmazem> | items |
Properties
NumItens
Devolve o número de items da coleção de armazéns.
Declaration
public int NumItens { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
Add(Object)
Insere um novo item na coleção.
Declaration
public void Add(object objCampo)
Parameters
Type | Name | Description |
---|---|---|
System.Object | objCampo |
Finalize()
Destrutor da classe.
Declaration
protected override void Finalize()
GetEdita(Object)
Edita o objecto ArtigoArmazem respectivo.
Declaration
public InvBEArtigoArmazem GetEdita(dynamic Index)
Parameters
Type | Name | Description |
---|---|---|
System.Object | Index |
Returns
Type | Description |
---|---|
InvBEArtigoArmazem |
Insere(InvBEArtigoArmazem)
Insere um objecto do tipo ArtigoArmazem na coleção de armazéns.
Declaration
public dynamic Insere(InvBEArtigoArmazem objBEArtigoArmazem)
Parameters
Type | Name | Description |
---|---|---|
InvBEArtigoArmazem | objBEArtigoArmazem |
Returns
Type | Description |
---|---|
System.Object |
Remove(Object)
Remove um item da coleção de armazéns.
Declaration
public void Remove(dynamic Index)
Parameters
Type | Name | Description |
---|---|---|
System.Object | Index |
RemoveTodos()
Remove todos os items da coleção.
Declaration
public void RemoveTodos()
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable