public void Load(int iID) { CDbDocumentReleaseType dbDt = new CDbDocumentReleaseType(); string tmpDat; tmpDat = dbDt.GetByID(iID); Clear(); if (tmpDat.Length > 0) { LoadVals(tmpDat); } dbDt = null; }
public int Save() { CDbDocumentReleaseType dbDt = new CDbDocumentReleaseType(); string tmpDat; int retVal; tmpDat = GetDataString(); if (base.ID > 0) { dbDt.SavePrev(tmpDat); retVal = base.ID; } else { retVal = dbDt.SaveNew(tmpDat); base.ID = retVal; } dbDt = null; return(retVal); }
public static void Delete(int iID) { CDbDocumentReleaseType dbDt = new CDbDocumentReleaseType(); dbDt.Delete(iID); }
public static DataSet GetListDS() { CDbDocumentReleaseType db = new CDbDocumentReleaseType(); return(db.GetListDS()); }
public static SqlDataReader GetList() { CDbDocumentReleaseType db = new CDbDocumentReleaseType(); return(db.GetList()); }