protected void showBook(EntClsBook ent_book) { txtTitle.Text = ent_book.Name; txtStock.Text = Convert.ToString(ent_book.Stock); txtCode.Text = ent_book.Code; EntClsWrite ent_write = bsn_write.listWriteForCode(ent_book.Code); EntClsAuthor ent_author = bsn_auth.checkAuthorForId(ent_write.IdAuthor); txtAuthor.Text = ent_author.Name + ' ' + ent_author.LastName; txtStateB.Text = ent_book.StateB; }
protected void ShowBook(EntClsBook book) { textTitle.Text = book.Name; textIsbn.Text = book.Isbn; textDatePublish.Text = book.DatePublish; textStock.Text = Convert.ToString(book.Stock); textState.Text = book.StateB; EntClsCategory ent_categ = bsn_cate.listCategoryForid(book.IdCateg); textCategory.Text = ent_categ.Name; EntClsEditorial ent_edit = bsn_edit.checkEditorialForId(book.IdEdit); textEdit.Text = ent_edit.Name; EntClsWrite ent_write = bsn_write.listWriteForCode(book.Code); EntClsAuthor ent_author = bsn_auth.checkAuthorForId(ent_write.IdAuthor); textAuthor.Text = ent_author.Name + ' ' + ent_author.LastName; }