Пример #1
0
 public bool AddPublisher(Publisher publisher)
 {
     using (LibraryEntities db = new LibraryEntities())
     {
         Publisher a = db.Publishers.Where((x) =>
                                           x.PublisherName == publisher.
                                           PublisherName).FirstOrDefault();
         if (a == null)
         {
             db.Publishers.Add(publisher);
             db.SaveChanges();
             MessageBox.Show("New publisher added: " +
                             publisher.PublisherName);
             return(true);
         }
         else
         {
             MessageBox.Show(" Cancel the transaction.\n" +
                             " A publisher with this name:\n" +
                             publisher.PublisherName +
                             "/n already exists in the library.");
             return(false);
         }
     }
 }
Пример #2
0
 public bool AddAuthor(Author author)
 {
     using (LibraryEntities db = new LibraryEntities())
     {
         Author a = db.Authors.Where((x) =>
                                     x.FirstName + " " + x.LastName == author.
                                     FirstName + " " + author.LastName).FirstOrDefault();
         if (a == null)
         {
             db.Authors.Add(author);
             db.SaveChanges();
             MessageBox.Show("New aythor added: "
                             + author.LastName + " " + author.LastName);
             return(true);
         }
         else
         {
             MessageBox.Show(" Cancel the transaction.\n" +
                             " A author with this name:\n" +
                             author.LastName + " " + author.LastName +
                             "/n already exists in the library.");
             return(false);
         }
     }
 }
Пример #3
0
        private void GetAllBooks()
        {
            using (LibraryEntities db = new LibraryEntities())
            {
                var au = db.Books.OrderBy((x) => x.Title).ToList();
                idBookSender = au.First().Id;

                foreach (var a in au)
                {
                    string s = a.Title + " : " + a.Author.FirstName + " " +
                               a.Author.LastName + "  [" + a.Publisher.PublisherName +
                               " " + a.Publisher.Address + "]; Price: " + a.Price +
                               ", pages: " + a.Pages;
                    dBook.Add(s, a.Id);
                }

                dt.Columns.Add("Books");
                foreach (var item in dBook.Keys)
                {
                    var row = dt.NewRow();
                    row["Books"] = item;
                    dt.Rows.Add(row);
                }

                // Set the DataSource to the DataSet
                // Set DataSource of BindingSource to table
                bookBindingNavigator.BindingSource = bookBindingSource;
                bookBindingSource.DataSource       = dt;
                dataGridViewBook.DataSource        = bookBindingSource;
            }
        }
Пример #4
0
        public bool EdBook(Book book)
        {
            using (LibraryEntities db = new LibraryEntities())
            {
                Book b = db.Books.Where((x) => x.Title ==
                                        book.Title).FirstOrDefault();
                if (b == null)
                {
                    db.Books.Where((x) =>
                                   x.Id == idBookSender).Single().Title = book.Title;
                    db.Books.Where((x) =>
                                   x.Id == idBookSender).Single().IdAuthor = book.IdAuthor;
                    db.Books.Where((x) =>
                                   x.Id == idBookSender).Single().IdPublisher = book.IdPublisher;
                    db.Books.Where((x) =>
                                   x.Id == idBookSender).Single().Pages = book.Pages;
                    db.Books.Where((x) =>
                                   x.Id == idBookSender).Single().Price = book.Price;

                    db.SaveChanges();
                    MessageBox.Show(
                        " The book with the name\n" + book.Title +
                        "\n was successfully edited.");
                    return(true);
                }
                else
                {
                    MessageBox.Show(" Cancel the transaction.\n" +
                                    " A book with this name:\n" + book.Title +
                                    "\n already exists in the library.");
                    return(false);
                }
            }
        }
Пример #5
0
        private void GetAllPublishers()
        {
            using (LibraryEntities db = new LibraryEntities())
            {
                var dtPublisher = db.Publishers.Select(selector:
                                                       x => new { x.PublisherName, x.Address }).ToList();
                dataGridViewPublishers.DataSource = dtPublisher;

                dataGridViewPublishers.Columns[0].HeaderText = "Name";
                dataGridViewPublishers.Columns[1].HeaderText = "Address";

                // Set the DataSource to the DataSet
                // Set DataSource of BindingSource to table
                publisherBindingNavigator.BindingSource        = publisherBindingSource;
                publisherBindingSource.DataSource              = dtPublisher;
                dataGridViewPublishers.DataSource              = publisherBindingSource;
                dataGridViewPublishers.Columns[0].AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;
                dataGridViewPublishers.Columns[1].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
            }
        }
Пример #6
0
        // another way
        //private void GetAllBooks1()
        //{
        //    using (var context = new LibraryEntities())
        //    {
        //        var query = from books in context.Books
        //                    join author in context.Authors on books.IdAuthor equals author.Id
        //                    join publisher in context.Publishers on books.IdPublisher equals publisher.Id
        //                    select new
        //                    {
        //                        books.Id,
        //                        aFName = author.FirstName,
        //                        aLName = author.LastName,
        //                        books.Title,
        //                        books.Pages,
        //                        books.Price,
        //                        publisher.PublisherName,
        //                        publisher.Address
        //                    };
        //        dataGridViewBook.DataSource = query.ToList();
        //        dataGridViewBook.Columns["aFName"].HeaderText = "First name";
        //        dataGridViewBook.Columns["aLName"].HeaderText = "Second name";
        //        dataGridViewBook.Columns["PublisherName"].HeaderText = "Publisher name";
        //    }
        //}

        private void GetAllAuthors()
        {
            using (LibraryEntities db = new LibraryEntities())
            {
                var dtAuthor = db.Authors.Select(selector:
                                                 x => new { x.FirstName, x.LastName }).ToList();

                dataGridViewAuthors.DataSource            = dtAuthor;
                dataGridViewAuthors.Columns[0].HeaderText = "First Name";
                dataGridViewAuthors.Columns[1].HeaderText = "Last Name";

                // Set the DataSource to the DataSet
                // Set DataSource of BindingSource to table
                authorBindingNavigator.BindingSource        = authorBindingSource;
                authorBindingSource.DataSource              = dtAuthor;
                dataGridViewAuthors.DataSource              = authorBindingSource;
                dataGridViewAuthors.Columns[0].AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;
                dataGridViewAuthors.Columns[1].AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;
            }
        }
Пример #7
0
 public bool AddBook(Book book)
 {
     using (LibraryEntities db = new LibraryEntities())
     {
         Book a = db.Books.Where((x) => x.Title ==
                                 book.Title).FirstOrDefault();
         if (a == null)
         {
             db.Books.Add(book);
             db.SaveChanges();
             idBookSender = book.Id;
             MessageBox.Show(" New book added:  " + book.Title);
             return(true);
         }
         else
         {
             MessageBox.Show(" Cancel the transaction.\n" +
                             " A book with this name:\n" + book.Title +
                             "\n already exists in the library.");
             return(false);
         }
     }
 }
Пример #8
0
        private void EditBook_Load(object sender, EventArgs e)
        {
            if (Owner is Form1 main)
            {
                localIsAdd   = main.isAdd;
                senderIdBook = main.idBookSender;
            }

            using (LibraryEntities db = new LibraryEntities())
            {
                // initializing fields with values from the selected
                // row of the parent datagridview

                // for textBoxTitle:
                textBoxTitle.Text = (from bk in db.Books.ToList()
                                     where bk.Id == senderIdBook
                                     select bk.Title).Single();

                // for comboBoxAuthor:
                var au = db.Authors.OrderBy((x) => x.FirstName).ToList();
                foreach (var a in au)
                {
                    string s = a.FirstName + " " + a.LastName;
                    dAuthor.Add(s, a.Id);
                }
                comboBoxAuthor.DataSource    = new BindingSource(dAuthor, null);
                comboBoxAuthor.DisplayMember = "Key";
                comboBoxAuthor.ValueMember   = "Value";
                sTransmitter = (from bk in db.Books.ToList()
                                where bk.Id == senderIdBook
                                select bk.Author.FirstName + " " + bk.Author.LastName).Single();
                comboBoxAuthor.Text = sTransmitter;
                // the same thing in another way
                // comboBoxAuthor.SelectedIndex = comboBoxAuthor.FindString(sAut);

                // for comboBoxPublisher:
                var pb = db.Publishers.OrderBy((x) => x.PublisherName).ToList();
                foreach (var a in pb)
                {
                    string s = a.PublisherName + " :: " + a.Address;
                    dPublisher.Add(s, a.Id);
                }
                comboBoxPublisher.DataSource    = new BindingSource(dPublisher, null);
                comboBoxPublisher.DisplayMember = "Key";
                comboBoxPublisher.ValueMember   = "Value";
                sTransmitter = (from bk in db.Books.ToList()
                                where bk.Id == senderIdBook
                                select bk.Publisher.PublisherName + " :: " + bk.Publisher.Address).Single();
                comboBoxPublisher.Text = sTransmitter;

                // for textBoxPrice
                textBoxPrice.Text = (from bk in db.Books.ToList()
                                     where bk.Id == senderIdBook
                                     select bk.Price).Single().ToString();

                // for textBoxPages
                textBoxPages.Text = (from bk in db.Books.ToList()
                                     where bk.Id == senderIdBook
                                     select bk.Pages).Single().ToString();

                if (localIsAdd)
                {
                    textBoxTitle.Text = "unknown..";
                    textBoxPrice.Text = "0";
                    textBoxPages.Text = "0";
                }
            }
        }