Ejemplo n.º 1
0
            public MUONSACHRow AddMUONSACHRow(System.Decimal SOPHIEUMUON, DOCGIARow parentDOCGIARowByDOCGIAMUONSACH, string MSNV, System.DateTime NGAYMUON)
            {
                MUONSACHRow rowMUONSACHRow = ((MUONSACHRow)(this.NewRow()));

                rowMUONSACHRow.ItemArray = new object[] {
                    SOPHIEUMUON,
                    parentDOCGIARowByDOCGIAMUONSACH[0],
                    MSNV,
                    NGAYMUON
                };
                this.Rows.Add(rowMUONSACHRow);
                return(rowMUONSACHRow);
            }
Ejemplo n.º 2
0
            public DOCGIARow AddDOCGIARow(string MSDG, string TENDG, string DIACHI, System.DateTime NGAYSINH, string EMAIL, string GIOITINH, string THONGTINKHAC, string HINHANHDG)
            {
                DOCGIARow rowDOCGIARow = ((DOCGIARow)(this.NewRow()));

                rowDOCGIARow.ItemArray = new object[] {
                    MSDG,
                    TENDG,
                    DIACHI,
                    NGAYSINH,
                    EMAIL,
                    GIOITINH,
                    THONGTINKHAC,
                    HINHANHDG
                };
                this.Rows.Add(rowDOCGIARow);
                return(rowDOCGIARow);
            }
Ejemplo n.º 3
0
 public DOCGIARowChangeEvent(DOCGIARow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 4
0
 public void RemoveDOCGIARow(DOCGIARow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 5
0
 public void AddDOCGIARow(DOCGIARow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 6
0
 public DOCGIARowChangeEvent(DOCGIARow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }