public void Delete() { drow.Delete(); ClsBookTypeTable c = new ClsBookTypeTable(); c.Save(); }
public ClsBookType(int id) { ClsBookTypeTable cat = new ClsBookTypeTable(); drow = cat.Find(id); FillFields(); }
public void Add() { ClsBookTypeTable ct = new ClsBookTypeTable(); drow = ct.GetNewRow(); FillDataRow(); ct.AddRow(drow); }
public void Update() { FillDataRow(); Bll.ClsBookTypeTable c = new ClsBookTypeTable(); c.Save(); }