public ServiceCategoryRow AddServiceCategoryRow(string ServiceCategoryCode, string ServiceCategoryDesc)
            {
                ServiceCategoryRow rowServiceCategoryRow = ((ServiceCategoryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ServiceCategoryCode,
                    ServiceCategoryDesc
                };
                rowServiceCategoryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowServiceCategoryRow);
                return(rowServiceCategoryRow);
            }
 public ServiceCategoryRowChangeEvent(ServiceCategoryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveServiceCategoryRow(ServiceCategoryRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddServiceCategoryRow(ServiceCategoryRow row)
 {
     this.Rows.Add(row);
 }