private void LoadDataToComboboxAuthor()
 {
     BookTitleBLL bookTitleBLL = new BookTitleBLL();
     this.cboAuthor.DataSource = bookTitleBLL.getComboboxItemAuthor();
     this.cboAuthor.DisplayMember = "Text";
     this.cboAuthor.ValueMember = "Value";
 }