Exemple #1
0
 public _ItemRowChangeEvent(RMSItems.dsItem._ItemRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemple #2
0
 public void Add_ItemRow(RMSItems.dsItem._ItemRow row)
 {
     base.Rows.Add(row);
 }
Exemple #3
0
 public void Remove_ItemRow(RMSItems.dsItem._ItemRow row)
 {
     base.Rows.Remove(row);
 }
Exemple #4
0
 public void RemoveDepartmentRow(RMSItems.dsDepartment.DepartmentRow row)
 {
     base.Rows.Remove(row);
 }
Exemple #5
0
 public DepartmentRowChangeEvent(RMSItems.dsDepartment.DepartmentRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemple #6
0
 public CategoryRowChangeEvent(RMSItems.dsCategory.CategoryRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemple #7
0
 public void AddDepartmentRow(RMSItems.dsDepartment.DepartmentRow row)
 {
     base.Rows.Add(row);
 }
Exemple #8
0
 public void RemoveCategoryRow(RMSItems.dsCategory.CategoryRow row)
 {
     base.Rows.Remove(row);
 }
Exemple #9
0
 public void AddCategoryRow(RMSItems.dsCategory.CategoryRow row)
 {
     base.Rows.Add(row);
 }
Exemple #10
0
 public SupplierRowChangeEvent(RMSItems.dsSupplier.SupplierRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemple #11
0
 public void RemoveSupplierRow(RMSItems.dsSupplier.SupplierRow row)
 {
     base.Rows.Remove(row);
 }
Exemple #12
0
 public void AddSupplierRow(RMSItems.dsSupplier.SupplierRow row)
 {
     base.Rows.Add(row);
 }