public ClsAuthors(int id) { ClsAuthorsTable cat = new ClsAuthorsTable(); drow = cat.Find(id); FillFields(); }
public void Add() { ClsAuthorsTable cat = new ClsAuthorsTable(); drow = cat.GetNewRow(); FillDataRow(); cat.AddRow(drow); }
public void Update() { FillDataRow(); Bll.ClsAuthorsTable cat = new ClsAuthorsTable(); cat.Save(); }