public _ItemRowChangeEvent(RMSItems.dsItem._ItemRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void Add_ItemRow(RMSItems.dsItem._ItemRow row) { base.Rows.Add(row); }
public void Remove_ItemRow(RMSItems.dsItem._ItemRow row) { base.Rows.Remove(row); }
public void RemoveDepartmentRow(RMSItems.dsDepartment.DepartmentRow row) { base.Rows.Remove(row); }
public DepartmentRowChangeEvent(RMSItems.dsDepartment.DepartmentRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public CategoryRowChangeEvent(RMSItems.dsCategory.CategoryRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void AddDepartmentRow(RMSItems.dsDepartment.DepartmentRow row) { base.Rows.Add(row); }
public void RemoveCategoryRow(RMSItems.dsCategory.CategoryRow row) { base.Rows.Remove(row); }
public void AddCategoryRow(RMSItems.dsCategory.CategoryRow row) { base.Rows.Add(row); }
public SupplierRowChangeEvent(RMSItems.dsSupplier.SupplierRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveSupplierRow(RMSItems.dsSupplier.SupplierRow row) { base.Rows.Remove(row); }
public void AddSupplierRow(RMSItems.dsSupplier.SupplierRow row) { base.Rows.Add(row); }