Esempio n. 1
0
            public StaffViewRow AddStaffViewRow(string Staff_Name, string RealName, string Email, string Mobile, string SexName, string Position_Name)
            {
                StaffViewRow rowStaffViewRow = ((StaffViewRow)(this.NewRow()));

                rowStaffViewRow.ItemArray = new object[] {
                    Staff_Name,
                    RealName,
                    Email,
                    Mobile,
                    SexName,
                    Position_Name
                };
                this.Rows.Add(rowStaffViewRow);
                return(rowStaffViewRow);
            }
Esempio n. 2
0
 public StaffViewRowChangeEvent(StaffViewRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveStaffViewRow(StaffViewRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddStaffViewRow(StaffViewRow row)
 {
     this.Rows.Add(row);
 }
Esempio n. 5
0
 public StaffViewRowChangeEvent(StaffViewRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 6
0
 public void RemoveStaffViewRow(StaffViewRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 7
0
 public void AddStaffViewRow(StaffViewRow row)
 {
     this.Rows.Add(row);
 }