Exemplo n.º 1
0
            public OrgsAccountsRow AddOrgsAccountsRow(string Purpose, System.DateTime PaymentOrderDate, string PaymentNo)
            {
                OrgsAccountsRow rowOrgsAccountsRow = ((OrgsAccountsRow)(this.NewRow()));

                rowOrgsAccountsRow.ItemArray = new object[] {
                    Purpose,
                    PaymentOrderDate,
                    PaymentNo
                };
                this.Rows.Add(rowOrgsAccountsRow);
                return(rowOrgsAccountsRow);
            }
Exemplo n.º 2
0
            public OrgsAccountsRow AddOrgsAccountsRow(int OrgsAccountsID, string RAccount, int OrgID, int AccountID)
            {
                OrgsAccountsRow rowOrgsAccountsRow = ((OrgsAccountsRow)(this.NewRow()));

                rowOrgsAccountsRow.ItemArray = new object[] {
                    OrgsAccountsID,
                    RAccount,
                    OrgID,
                    AccountID
                };
                this.Rows.Add(rowOrgsAccountsRow);
                return(rowOrgsAccountsRow);
            }
Exemplo n.º 3
0
            public OrgsAccountsRow AddOrgsAccountsRow(int AccountID, string RAccount, int OrgID)
            {
                OrgsAccountsRow rowOrgsAccountsRow = ((OrgsAccountsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    AccountID,
                    RAccount,
                    OrgID,
                    null
                };
                rowOrgsAccountsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowOrgsAccountsRow);
                return(rowOrgsAccountsRow);
            }
Exemplo n.º 4
0
            public OrgsAccountsRow AddOrgsAccountsRow(int AccountID, int OrgID, string RAccount, int BankID, string CurrencyID, string OrgName)
            {
                OrgsAccountsRow rowOrgsAccountsRow = ((OrgsAccountsRow)(this.NewRow()));

                rowOrgsAccountsRow.ItemArray = new object[] {
                    null,
                    AccountID,
                    OrgID,
                    RAccount,
                    BankID,
                    CurrencyID,
                    OrgName
                };
                this.Rows.Add(rowOrgsAccountsRow);
                return(rowOrgsAccountsRow);
            }
Exemplo n.º 5
0
            public OrgsAccountsRow AddOrgsAccountsRow(string RAccount, string CodeBIK, string BankName, string KAccount, string CityName, int OrgID, string LastPaymentOrderNo, string OrgName)
            {
                OrgsAccountsRow rowOrgsAccountsRow = ((OrgsAccountsRow)(this.NewRow()));

                rowOrgsAccountsRow.ItemArray = new object[] {
                    RAccount,
                    CodeBIK,
                    BankName,
                    KAccount,
                    CityName,
                    OrgID,
                    LastPaymentOrderNo,
                    null,
                    null,
                    null,
                    OrgName
                };
                this.Rows.Add(rowOrgsAccountsRow);
                return(rowOrgsAccountsRow);
            }
Exemplo n.º 6
0
 public OrgsAccountsRowChangeEvent(OrgsAccountsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 7
0
 public void RemoveOrgsAccountsRow(OrgsAccountsRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 8
0
 public void AddOrgsAccountsRow(OrgsAccountsRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 9
0
 public OrgsAccountsRowChangeEvent(OrgsAccountsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }