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