Exemple #1
0
        public ClsAuthors(int id)
        {
            ClsAuthorsTable cat = new ClsAuthorsTable();

            drow = cat.Find(id);
            FillFields();
        }
Exemple #2
0
        public void Add()
        {
            ClsAuthorsTable cat = new ClsAuthorsTable();

            drow = cat.GetNewRow();
            FillDataRow();
            cat.AddRow(drow);
        }
Exemple #3
0
 public void Update()
 {
     FillDataRow();
     Bll.ClsAuthorsTable cat = new ClsAuthorsTable();
     cat.Save();
 }