private void AddTitle(string title, string author, int rating, int?price, string genre) { bookDao.AddTitle(title, author, rating, price == null ? 100 : price, genre); notificationService.GenerateNewBookArrivalNotifications(title, author); }