Exemplo n.º 1
0
            public CreditsPointsRow AddCreditsPointsRow(int CreditID, System.DateTime PointDate, System.Double PointSum, System.Double PointPercent)
            {
                CreditsPointsRow rowCreditsPointsRow = ((CreditsPointsRow)(this.NewRow()));

                rowCreditsPointsRow.ItemArray = new object[] {
                    null,
                    CreditID,
                    PointDate,
                    PointSum,
                    PointPercent
                };
                this.Rows.Add(rowCreditsPointsRow);
                return(rowCreditsPointsRow);
            }
Exemplo n.º 2
0
 public CreditsPointsRowChangeEvent(CreditsPointsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveCreditsPointsRow(CreditsPointsRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddCreditsPointsRow(CreditsPointsRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public CreditsPointsRowChangeEvent(CreditsPointsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }