{"id":19955644,"url":"https://github.com/szirocica/inventory-management-system","last_synced_at":"2026-06-10T00:31:10.499Z","repository":{"id":167351683,"uuid":"642907803","full_name":"szirocica/Inventory-Management-System","owner":"szirocica","description":"Professional looking inventory management system using c#.Net, Bunifu and Guna UI elements, Sql server","archived":false,"fork":false,"pushed_at":"2023-05-19T18:17:58.000Z","size":1129,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-12T06:48:58.313Z","etag":null,"topics":["bunifu-framework","bunifu-ui","csharp","guna-framework","guna-ui","sql"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/szirocica.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-19T16:09:07.000Z","updated_at":"2024-05-07T06:33:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd9c89f5-fb19-490f-a9b4-16e6fc309602","html_url":"https://github.com/szirocica/Inventory-Management-System","commit_stats":null,"previous_names":["szirocica/inventory-management-system"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szirocica%2FInventory-Management-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szirocica%2FInventory-Management-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szirocica%2FInventory-Management-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szirocica%2FInventory-Management-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/szirocica","download_url":"https://codeload.github.com/szirocica/Inventory-Management-System/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241389052,"owners_count":19955105,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bunifu-framework","bunifu-ui","csharp","guna-framework","guna-ui","sql"],"created_at":"2024-11-13T01:28:11.107Z","updated_at":"2026-06-10T00:31:10.490Z","avatar_url":"https://github.com/szirocica.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inventory-Management-System-2\nProfessional looking inventory management system using c#.Net, Bunifu and Guna UI elements, Sql server\u003cbr\u003e\n\nThe Application allows to:\u003cbr\u003e\n-Create, delete and update users\u003cbr\u003e\n-Create, delete and update products.\u003cbr\u003e\n-Create, delete and update products categories.\u003cbr\u003e\n-Create, delete and update customers\u003cbr\u003e\n-Add Orders \u003cbr\u003e\nWhen a user orders a product, the product quantity is updated\u003cbr\u003e\n-The Order can be printed\u003cbr\u003e\n-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.\u003cbr\u003e\n\nHow to use the application:\u003cbr\u003e\n-create an mdf database file and update sql connection\u003cbr\u003e\n-create the following tables:\n\nCREATE TABLE [dbo].[CategoryTable] (\n    [CategoryId]   INT          NOT NULL,\n    [CategoryName] VARCHAR (50) NOT NULL,\n    PRIMARY KEY CLUSTERED ([CategoryId] ASC)\n);\n\nCREATE TABLE [dbo].[CustomerTable] (\n    [CustomerId]    INT          NOT NULL,\n    [CustomerName]  VARCHAR (50) NOT NULL,\n    [CustomerPhone] VARCHAR (50) NOT NULL,\n    PRIMARY KEY CLUSTERED ([CustomerId] ASC)\n);\n\nCREATE TABLE [dbo].[OrderTable] (\n    [OrderId]      INT          NOT NULL,\n    [CustomerId]   INT          NOT NULL,\n    [CustomerName] VARCHAR (50) NOT NULL,\n    [OrderDate]    VARCHAR (50) NOT NULL,\n    [TotalAmount]  INT          NOT NULL,\n    PRIMARY KEY CLUSTERED ([OrderId] ASC)\n);\n\nCREATE TABLE [dbo].[ProductTable] (\n    [ProductId]          INT           NOT NULL,\n    [ProductName]        VARCHAR (50)  NOT NULL,\n    [ProductQuantity]    INT           NOT NULL,\n    [ProductPrice]       INT           NOT NULL,\n    [ProductDescription] VARCHAR (100) NOT NULL,\n    [ProductCategory]    VARCHAR (50)  NOT NULL,\n    PRIMARY KEY CLUSTERED ([ProductId] ASC)\n);\n\nCREATE TABLE [dbo].[UserTable] (\n    [Uname]     VARCHAR (50) NOT NULL,\n    [Ufullname] VARCHAR (50) NOT NULL,\n    [Upassword] VARCHAR (50) NOT NULL,\n    [Uphone]    NCHAR (10)   NOT NULL,\n    CONSTRAINT [PK_Table] PRIMARY KEY CLUSTERED ([Uphone] ASC)\n);\n\n-Insert a user to users table\u003cbr\u003e\n-start the app\u003cbr\u003e\n-login with the previously inserted user\u003cbr\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszirocica%2Finventory-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fszirocica%2Finventory-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszirocica%2Finventory-management-system/lists"}