https://github.com/szirocica/inventory-management-system
Professional looking inventory management system using c#.Net, Bunifu and Guna UI elements, Sql server
https://github.com/szirocica/inventory-management-system
bunifu-framework bunifu-ui csharp guna-framework guna-ui sql
Last synced: 4 months ago
JSON representation
Professional looking inventory management system using c#.Net, Bunifu and Guna UI elements, Sql server
- Host: GitHub
- URL: https://github.com/szirocica/inventory-management-system
- Owner: szirocica
- Created: 2023-05-19T16:09:07.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-19T18:17:58.000Z (about 2 years ago)
- Last Synced: 2025-01-12T06:48:58.313Z (5 months ago)
- Topics: bunifu-framework, bunifu-ui, csharp, guna-framework, guna-ui, sql
- Language: C#
- Homepage:
- Size: 1.08 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inventory-Management-System-2
Professional looking inventory management system using c#.Net, Bunifu and Guna UI elements, Sql serverThe Application allows to:
-Create, delete and update users
-Create, delete and update products.
-Create, delete and update products categories.
-Create, delete and update customers
-Add Orders
When a user orders a product, the product quantity is updated
-The Order can be printed
-A dashboard presents the Number of orders made by a particular customer, The total amount of the orders by the given customer and the date of the last order.How to use the application:
-create an mdf database file and update sql connection
-create the following tables:CREATE TABLE [dbo].[CategoryTable] (
[CategoryId] INT NOT NULL,
[CategoryName] VARCHAR (50) NOT NULL,
PRIMARY KEY CLUSTERED ([CategoryId] ASC)
);CREATE TABLE [dbo].[CustomerTable] (
[CustomerId] INT NOT NULL,
[CustomerName] VARCHAR (50) NOT NULL,
[CustomerPhone] VARCHAR (50) NOT NULL,
PRIMARY KEY CLUSTERED ([CustomerId] ASC)
);CREATE TABLE [dbo].[OrderTable] (
[OrderId] INT NOT NULL,
[CustomerId] INT NOT NULL,
[CustomerName] VARCHAR (50) NOT NULL,
[OrderDate] VARCHAR (50) NOT NULL,
[TotalAmount] INT NOT NULL,
PRIMARY KEY CLUSTERED ([OrderId] ASC)
);CREATE TABLE [dbo].[ProductTable] (
[ProductId] INT NOT NULL,
[ProductName] VARCHAR (50) NOT NULL,
[ProductQuantity] INT NOT NULL,
[ProductPrice] INT NOT NULL,
[ProductDescription] VARCHAR (100) NOT NULL,
[ProductCategory] VARCHAR (50) NOT NULL,
PRIMARY KEY CLUSTERED ([ProductId] ASC)
);CREATE TABLE [dbo].[UserTable] (
[Uname] VARCHAR (50) NOT NULL,
[Ufullname] VARCHAR (50) NOT NULL,
[Upassword] VARCHAR (50) NOT NULL,
[Uphone] NCHAR (10) NOT NULL,
CONSTRAINT [PK_Table] PRIMARY KEY CLUSTERED ([Uphone] ASC)
);-Insert a user to users table
-start the app
-login with the previously inserted user