Class InvBEOrigensMovimentos
Classe que identifica uma coleção de origens de movimentos de stock ou de custeio.
Implements
System.Collections.Generic.IEnumerable<InvBEOrigemMovimento>
System.Collections.IEnumerable
Inherited Members
Namespace: InvBE100
Assembly: InvBE100.dll
Syntax
public class InvBEOrigensMovimentos : InvBaseBE, IEnumerable<InvBEOrigemMovimento>, IEnumerable
Constructors
InvBEOrigensMovimentos()
Construtor da classe.
Declaration
public InvBEOrigensMovimentos()
InvBEOrigensMovimentos(IEnumerable<InvBEOrigemMovimento>)
Construtor da classe.
Declaration
public InvBEOrigensMovimentos(IEnumerable<InvBEOrigemMovimento> items)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<InvBEOrigemMovimento> | items | Coleção com as origens de movimentos. |
Properties
NumItens
Total de origens da coleção.
Declaration
public int NumItens { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
Add(Object)
Insere uma origem na coleção.
Declaration
public void Add(object objCampo)
Parameters
Type | Name | Description |
---|---|---|
System.Object | objCampo | Objeto que identifica a origem (InvBEOrigemMovimento). |
Finalize()
Destrutor da classe.
Declaration
protected override void Finalize()
GetEdita(Int32)
Edita uma origem a partir da coleção.
Declaration
public InvBEOrigemMovimento GetEdita(int Index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | Index | Índice da origem. |
Returns
Type | Description |
---|---|
InvBEOrigemMovimento | Origem do movimento. |
Insere(InvBEOrigemMovimento)
Insere uma origem na coleção.
Declaration
public dynamic Insere(InvBEOrigemMovimento BEOrigemMovimento)
Parameters
Type | Name | Description |
---|---|---|
InvBEOrigemMovimento | BEOrigemMovimento | Objeto que identifica a origem. |
Returns
Type | Description |
---|---|
System.Object | Null |
Remove(Int32)
Remove uma origem da coleção.
Declaration
public void Remove(int Index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | Index | Índice da origem. |
RemoveTodos()
Remove todas as origens da coleção.
Declaration
public void RemoveTodos()
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable