/// <summary>
 /// Delete a book of the database by it's id
 /// </summary>
 /// <param name="id">The id of the book to be deleted</param>
 public void DeleteBookById(int id)
 {
     BookBLL.DeleteBookById(id);
 }