private void Btnloadreport_Click(object sender, EventArgs e)
 {
     try
     {
         using (var ctx = new LibraryManagerEntities())
         {
             var response = ctx.Students.Select(c => new
             {
                 c.LastName,
                 c.FirstName,
                 c.MiddleName,
                 c.Email,
                 c.MatricNo,
                 c.DateCreated
             }).Where(m => m.DateCreated >= txtDatefrom.Value && m.DateCreated <= txtdateTo.Value).ToList();
             if (response != null)
             {
                 dataGridView1.DataSource = response;
             }
             else
             {
                 dataGridView1.Visible = false;
             }
             Cursor = Cursors.Arrow;
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("An error occured while loading the report", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 private void StudentsVisitReport_Load(object sender, EventArgs e)
 {
     try
     {
         Cursor.Current = Cursors.WaitCursor;
         using (var ctx = new LibraryManagerEntities())
         {
             var response = ctx.Students.Select(c => new
             {
                 c.LastName,
                 c.FirstName,
                 c.MiddleName,
                 c.Email,
                 c.MatricNo,
                 c.DateCreated
             }).ToList();
             if (response != null)
             {
                 dataGridView1.DataSource = response;
             }
             else
             {
                 dataGridView1.Visible = false;
             }
             Cursor = Cursors.Arrow;
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("An error occured while loading the report", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Ejemplo n.º 3
0
 public StudentBook(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
     LoadDropDown();
     lblID.Hide();
 }
Ejemplo n.º 4
0
        private void BtnBorrow_Click(object sender, EventArgs e)
        {
            string matric = lblMatric.Text;

            try
            {
                var studentId = Guid.Parse(lblID.Text);//enter the student id here
                if (cmbBooks.SelectedValue == null)
                {
                    MessageBox.Show("Please select a book", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
                else
                {
                    if (ctx.StudentBooks.Any(c => c.BookId == (int)cmbBooks.SelectedValue && c.StudentId == studentId && c.IsReturned != true))
                    {
                        MessageBox.Show($"This student has already borrowed {cmbBooks.Text} and has not returned it", "Sorry", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        return;
                    }
                    var qty = ctx.Books.SingleOrDefault(m => m.BookId == (int)cmbBooks.SelectedValue).QtyAvailable;
                    if (qty > 0)
                    {
                        //initialized the Db Context
                        using (var ctx = new LibraryManagerEntities())
                        {
                            ctx.StudentBooks.Add(new Models.StudentBook()
                            {
                                StudentId    = studentId,
                                BookId       = (int)cmbBooks.SelectedValue,
                                DateToReturn = cmbDateToReturn.Value,
                                DateBorrowed = DateTime.Now.Date
                            });

                            var book = ctx.Books.Find((int)cmbBooks.SelectedValue);
                            var qty1 = book.QtyAvailable;
                            book.QtyAvailable = --qty1;
                            book.TimesBorowed = ++book.TimesBorowed;
                            ctx.SaveChanges();

                            ctx.SaveChanges();
                            MessageBox.Show("Book Borrowed to Student Successfully", "Good Job", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            GetStudentBookHistory(matric);
                        }
                    }
                    else
                    {
                        MessageBox.Show($"{cmbBooks.Text} is out of stock", "Sorry", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("An error occured while saving record", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Ejemplo n.º 5
0
        private void MetroButton1_Click(object sender, EventArgs e)
        {
            try
            {
                //Check if feilds are nulls
                if (string.IsNullOrWhiteSpace(txtname.Text) && string.IsNullOrWhiteSpace(txtphone.Text) &&
                    string.IsNullOrWhiteSpace(txtpassword.Text) && string.IsNullOrWhiteSpace(txtusername.Text))
                {
                    MessageBox.Show("All fields are required", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
                else
                {
                    if (ctx.Users.Any(c => c.PhoneNumber == txtphone.Text))
                    {
                        MessageBox.Show($"A record with {txtphone.Text} already exists", "Sorry", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        return;
                    }
                    if (ctx.Users.Any(c => c.username == txtusername.Text))
                    {
                        MessageBox.Show($"A record with the username {txtusername.Text} already exists", "Sorry", MessageBoxButtons.OK);
                        return;
                    }
                    //initialized the Db Context
                    using (var ctx = new LibraryManagerEntities())
                    {
                        ctx.Users.Add(new User()
                        {
                            PhoneNumber = txtphone.Text,
                            username    = txtusername.Text,
                            Password    = txtpassword.Text,
                            CreatedBy   = 2,
                            FullName    = txtname.Text,
                            DateCreated = DateTime.Now.Date
                        });

                        ctx.SaveChanges();
                        LoadGrid();
                        MessageBox.Show("Record Saved Successfully", "Good Job", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.RetryCancel);
            }
        }
Ejemplo n.º 6
0
        public AddStudent()
        {
            InitializeComponent();
            Cursor.Current = Cursors.WaitCursor;
            ctx            = new LibraryManagerEntities();
            using (var ctx = new LibraryManagerEntities())
            {
                var response = ctx.Students.Select(c => new
                {
                    c.LastName,
                    c.FirstName,
                    c.Email,
                    c.MatricNo,
                    c.DateCreated
                }).ToList();
                if (response != null)
                {
                    dataGridView1.DataSource = response;
                    DataGridViewButtonColumn button = new DataGridViewButtonColumn();
                    {
                        button.Name       = "actionButton";
                        button.HeaderText = "Action";
                        button.Text       = "Preview Card";
                        button.UseColumnTextForButtonValue = true;

                        dataGridView1.Columns.Add(button);
                    }
                    DataGridViewButtonColumn button2 = new DataGridViewButtonColumn();
                    {
                        button2.Name       = "actionButton2";
                        button2.HeaderText = "Action";
                        button2.Text       = "Print";
                        button2.UseColumnTextForButtonValue = true;

                        dataGridView1.Columns.Add(button2);
                    }
                }
                else
                {
                    dataGridView1.Visible = false;
                    groupBox2.Visible     = false;
                }
                Cursor = Cursors.Arrow;
            }
        }
Ejemplo n.º 7
0
        private void MetroButton1_Click(object sender, EventArgs e)
        {
            try
            {
                //Check if feilds are nulls
                if (string.IsNullOrWhiteSpace(txtTitle.Text) || string.IsNullOrWhiteSpace(txtAuthor.Text) ||
                    string.IsNullOrWhiteSpace(txtISBN.Text) || string.IsNullOrWhiteSpace(txtQty.Text) || (int)ddlCategory.SelectedValue == 0)
                {
                    MessageBox.Show("All fields are required", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
                else
                {
                    if (ctx.Books.Any(c => c.Title == txtTitle.Text))
                    {
                        MessageBox.Show($"A record with the Title {txtTitle.Text} already exists", "Sorry", MessageBoxButtons.OK);
                        return;
                    }
                    //initialized the Db Context
                    using (var ctx = new LibraryManagerEntities())
                    {
                        ctx.Books.Add(new Book()
                        {
                            Author       = txtAuthor.Text,
                            ISBN         = txtISBN.Text,
                            QtyEntered   = Int32.Parse(txtQty.Text),
                            QtyAvailable = Int32.Parse(txtQty.Text),
                            Title        = txtTitle.Text,
                            DateCreated  = DateTime.Now.Date,
                            CategoryId   = (int)ddlCategory.SelectedValue
                        });

                        ctx.SaveChanges();
                        LoadGrid();
                        MessageBox.Show("Record Saved Successfully", "Good Job", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error);
            }
        }
Ejemplo n.º 8
0
        private void BtnCategory_Click(object sender, EventArgs e)
        {
            try
            {
                //Check if feilds are nulls
                if (string.IsNullOrWhiteSpace(txtCategory.Text))
                {
                    MessageBox.Show("Please enter a Category name", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
                else
                {
                    if (ctx.Books.Any(c => c.Title == txtTitle.Text))
                    {
                        MessageBox.Show($"{txtCategory.Text} already exists", "Sorry", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                        return;
                    }
                    //initialized the Db Context
                    using (var ctx = new LibraryManagerEntities())
                    {
                        ctx.Categories.Add(new Category()
                        {
                            CategoryName = txtCategory.Text,
                            DateCreated  = DateTime.Now.Date,
                            CreatedBy    = 1
                        });

                        ctx.SaveChanges();
                        LoadGrid();
                        MessageBox.Show("Category Saved Successfully", "Good Job", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error);
            }
        }
Ejemplo n.º 9
0
 public BorrowReport(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
     GetStudentBookHistory();
 }
Ejemplo n.º 10
0
 public DailyReport(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
     LoadGrid(DateTime.Now.Date);
 }
Ejemplo n.º 11
0
 public BookReport(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
     LoadGrid();
 }
Ejemplo n.º 12
0
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                //Check if feilds are nulls
                if (string.IsNullOrWhiteSpace(txtfirstName.Text) && string.IsNullOrWhiteSpace(txtsurname.Text) &&
                    string.IsNullOrWhiteSpace(txtemail.Text) && string.IsNullOrWhiteSpace(txtmatricNo.Text) &&
                    string.IsNullOrWhiteSpace(txtlastName.Text) && string.IsNullOrWhiteSpace(txtNumber.Text))
                {
                    MessageBox.Show("All fields are required", "Warning", MessageBoxButtons.OK);
                }
                else
                {
                    if (ctx.Students.Any(c => c.Email == txtemail.Text))
                    {
                        MessageBox.Show($"A record with that Email{txtemail.Text} already exists", "Sorry", MessageBoxButtons.OK);
                        return;
                    }
                    //initialized the Db Context
                    using (var ctx = new LibraryManagerEntities())
                    {
                        //Using Student Info to generate QR
                        var    stdId         = Guid.NewGuid();
                        string makeStudentQR = $"{txtmatricNo.Text}";
                        //Saving student Info to DB
                        ctx.Students.Add(new Student()
                        {
                            FirstName   = txtfirstName.Text,
                            LastName    = txtsurname.Text,
                            CreatedBy   = 1,
                            DateCreated = DateTime.Now.Date,
                            Email       = txtemail.Text,
                            MatricNo    = txtmatricNo.Text,
                            MiddleName  = txtlastName.Text,
                            PhoneNumber = txtNumber.Text,
                            StudentId   = stdId,
                            qrcode      = makeStudentQR
                        });

                        ctx.SaveChanges();
                        var response = ctx.Students.Select(c => new
                        {
                            c.LastName,
                            c.FirstName,
                            c.Email,
                            c.MatricNo,
                            c.DateCreated
                        }).ToList();
                        if (response != null)
                        {
                            dataGridView1.DataSource = response;
                        }
                        else
                        {
                            dataGridView1.Visible = false;
                            groupBox2.Visible     = false;
                        }
                        MessageBox.Show("Record Saved Successfully", "Good Job", MessageBoxButtons.OK);
                    }
                }
            }
            catch (Exception ex)
            {
                throw;
            }
        }
Ejemplo n.º 13
0
        private void MetroButton2_Click(object sender, EventArgs e)
        {
            var filee = openFileDialog1.FileName;

            try
            {
                var filePath = Path.GetTempFileName();
                if (Path.GetExtension(filee) != ".xlsx" && Path.GetExtension(filee) != ".xls")
                {
                    MessageBox.Show("This is not a valid excel file", "Invalid File", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
                else
                {
                    bool      firstRow = true; bool firstRow2 = true;
                    DataTable dt    = new DataTable();
                    int       count = 0;
                    using (XLWorkbook workBook = new XLWorkbook(filee))
                    {
                        var cats       = ctx.Categories.ToList();
                        var categories = cats.Select(x => x.CategoryName);
                        //Read the first Sheet from Excel file.
                        IXLWorksheet workSheet = workBook.Worksheet(1);
                        foreach (IXLRow row in workSheet.Rows())
                        {
                            if (firstRow)
                            {
                                firstRow = false;
                            }
                            else
                            {
                                var i = row.Cell(6).Value.ToString();
                                if (!categories.Contains(row.Cell(6).Value.ToString().Trim()))
                                {
                                    MessageBox.Show("Ensure that all category names listed in the excel sheet are already registered on the system. click on the Category drop down to see registered categories, or add a new category in the Create Category section above.", "Unable to Upload!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                                    return;
                                }
                            }
                        }
                        foreach (IXLRow row in workSheet.Rows())
                        {
                            if (firstRow2)
                            {
                                firstRow2 = false;
                            }
                            else

                            {
                                string title = row.Cell(2).Value.ToString();
                                if (ctx.Books.Any(c => c.Title == title))
                                {
                                    MessageBox.Show($"A book with the Title {title} already exists", "Sorry", MessageBoxButtons.OK);
                                }
                                else
                                {
                                    //initialized the Db Context
                                    using (var ctx = new LibraryManagerEntities())
                                    {
                                        string qty = row.Cell(5).Value.ToString();

                                        ctx.Books.Add(new Book()
                                        {
                                            Author       = row.Cell(4).Value.ToString(),
                                            ISBN         = row.Cell(3).Value.ToString(),
                                            QtyEntered   = Int32.Parse(qty),
                                            QtyAvailable = Int32.Parse(qty),
                                            Title        = row.Cell(2).Value.ToString(),
                                            CategoryId   = cats.Where(x => x.CategoryName == row.Cell(6).Value.ToString().Trim()).FirstOrDefault().Id
                                        });

                                        ctx.SaveChanges();
                                        count++;
                                    }
                                }
                            }
                        }

                        LoadGrid();
                        MessageBox.Show(count + " Records Saved Successfully", "Good Job", MessageBoxButtons.OK);
                    }
                }
            }

            catch (Exception ex)
            {
                if (ex.Message.Contains("The process cannot access the file"))
                {
                    MessageBox.Show("Close the excel file and try again", "Unable to Upload", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                else
                {
                    MessageBox.Show("An error occured while uploading the file, Ensure the excel sheet is properly formatted or contact the vendor", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }
Ejemplo n.º 14
0
 public NewUser(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
     LoadGrid();
 }
Ejemplo n.º 15
0
 public StudentsVisitReport(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
     ctx = _ctx;
 }
Ejemplo n.º 16
0
 public TestReport(LibraryManagerEntities _ctx)
 {
     InitializeComponent();
 }