コード例 #1
0
            public otherinailRow AddotherinailRow(string idcon, int idotherinail, decimal taxable, System.DateTime start, System.DateTime stop, int nmonths)
            {
                otherinailRow rowotherinailRow = ((otherinailRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    idcon,
                    idotherinail,
                    taxable,
                    start,
                    stop,
                    nmonths
                };
                rowotherinailRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowotherinailRow);
                return(rowotherinailRow);
            }
コード例 #2
0
 public otherinailRowChangeEvent(otherinailRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveotherinailRow(otherinailRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddotherinailRow(otherinailRow row)
 {
     this.Rows.Add(row);
 }