public ResourceDelegationsRow AddResourceDelegationsRow(System.Guid DELEGATION_UID, System.Guid RES_UID, string RES_NAME, System.Guid DELEGATE_UID, string DELEGATE_NAME, System.DateTime DELEGATION_START, System.DateTime DELEGATION_FINISH)
            {
                ResourceDelegationsRow rowResourceDelegationsRow = ((ResourceDelegationsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    DELEGATION_UID,
                    RES_UID,
                    RES_NAME,
                    DELEGATE_UID,
                    DELEGATE_NAME,
                    DELEGATION_START,
                    DELEGATION_FINISH
                };
                rowResourceDelegationsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowResourceDelegationsRow);
                return(rowResourceDelegationsRow);
            }
 public ResourceDelegationsRowChangeEvent(ResourceDelegationsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveResourceDelegationsRow(ResourceDelegationsRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddResourceDelegationsRow(ResourceDelegationsRow row)
 {
     this.Rows.Add(row);
 }