コード例 #1
0
 public RoleData.SecurityRightsRow AddSecurityRightsRow(int SecurityRightId)
 {
     RoleData.SecurityRightsRow row = (RoleData.SecurityRightsRow)base.NewRow();
     row.ItemArray = new object[] { SecurityRightId };
     base.Rows.Add(row);
     return(row);
 }
コード例 #2
0
 public SecurityRightsRowChangeEvent(RoleData.SecurityRightsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveSecurityRightsRow(RoleData.SecurityRightsRow row)
 {
     base.Rows.Remove(row);
 }
コード例 #4
0
 public void AddSecurityRightsRow(RoleData.SecurityRightsRow row)
 {
     base.Rows.Add(row);
 }
コード例 #5
0
 public SecurityRightsRowChangeEvent(RoleData.SecurityRightsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }