public CartonSize BuildFromRow(DataRow row) { var returnRecord = CartonSize.BuildCartonSizeFromRow(row); returnRecord = this.BuildExtraFromRow <CartonSize>(returnRecord, row); return(returnRecord); }
public CartonSize Insert(CartonSize record) { DataRow row = this.dataSet.ttblcarton_size.Newttblcarton_sizeRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblcarton_size.Addttblcarton_sizeRow((pdscarton_sizeDataSet.ttblcarton_sizeRow)row); this.SaveChanges(); return(this.dataSet.ttblcarton_size.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcarton_size.Rows[0]) : null); }
public CartonSize GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); CartonSize cartonSize = null; if (row != null) { cartonSize = this.BuildFromRow(row); } return(cartonSize); }
protected CartonSize Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblcarton_size.AsEnumerable().SingleOrDefault(); CartonSize cartonSize = null; if (row != null) { cartonSize = this.BuildFromRow(row); } return(cartonSize); }
public void Delete(CartonSize record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblcarton_size.Newttblcarton_sizeRow(); CartonSize.BuildMinimalRow(ref row, record); this.dataSet.ttblcarton_size.Addttblcarton_sizeRow((pdscarton_sizeDataSet.ttblcarton_sizeRow)row); } row.Delete(); this.SaveChanges(); }
public CartonSize Update(CartonSize record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row != null) { this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.SaveChanges(); return(this.dataSet.ttblcarton_size.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcarton_size.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(CartonSize record) { this.adapter.Delete(record); }
public CartonSize Update(CartonSize record) { return(this.adapter.Update(record)); }
public CartonSize Insert(CartonSize record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, CartonSize record) { CartonSize.UpdateRowFromCartonSize(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public CartonSize Insert(CartonSize record) { return(this.repository.Insert(record)); }
public void Delete(CartonSize record) { this.repository.Delete(record); }
public CartonSize Update(CartonSize record) { return(this.repository.Update(record)); }