├── .vs └── ShopManagementSystem │ └── v15 │ └── .suo ├── Output ├── Report order.png ├── View product details.png ├── add_customer.png ├── create Order.png ├── delete stock.png ├── home.png ├── login.png └── update vendor.png ├── README.md ├── SQL file.sql ├── ShopManagementSystem.sln └── ShopManagementSystem ├── App.config ├── Connect.cs ├── CustomerDelete.Designer.cs ├── CustomerDelete.cs ├── CustomerDelete.resx ├── CustomerInsert.Designer.cs ├── CustomerInsert.cs ├── CustomerInsert.resx ├── CustomerUpdate.Designer.cs ├── CustomerUpdate.cs ├── CustomerUpdate.resx ├── CustomerView.Designer.cs ├── CustomerView.cs ├── CustomerView.resx ├── DGVPrinter.cs ├── Details.Designer.cs ├── Details.cs ├── Details.resx ├── Developers.Designer.cs ├── Developers.cs ├── Developers.resx ├── FormMenu.Designer.cs ├── FormMenu.cs ├── FormMenu.resx ├── MyApplications.Designer.cs ├── MyApplications.cs ├── MyApplications.resx ├── MyLogin.Designer.cs ├── MyLogin.cs ├── MyLogin.resx ├── OrderDelete.Designer.cs ├── OrderDelete.cs ├── OrderDelete.resx ├── OrderInsert.Designer.cs ├── OrderInsert.cs ├── OrderInsert.resx ├── OrderView.Designer.cs ├── OrderView.cs ├── OrderView.resx ├── ProductDelete.Designer.cs ├── ProductDelete.cs ├── ProductDelete.resx ├── ProductInsert.Designer.cs ├── ProductInsert.cs ├── ProductInsert.resx ├── ProductUpdate.Designer.cs ├── ProductUpdate.cs ├── ProductUpdate.resx ├── ProductView.Designer.cs ├── ProductView.cs ├── ProductView.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ReportCustomer.Designer.cs ├── ReportCustomer.cs ├── ReportCustomer.resx ├── ReportOrder.Designer.cs ├── ReportOrder.cs ├── ReportOrder.resx ├── ReportProduct.Designer.cs ├── ReportProduct.cs ├── ReportProduct.resx ├── ReportStocks.Designer.cs ├── ReportStocks.cs ├── ReportStocks.resx ├── ReportVendors.Designer.cs ├── ReportVendors.cs ├── ReportVendors.resx ├── ShopManagementSystem.csproj ├── SqlConnect.cs ├── StockDelete.Designer.cs ├── StockDelete.cs ├── StockDelete.resx ├── StockInsert.Designer.cs ├── StockInsert.cs ├── StockInsert.resx ├── StockUpdate.Designer.cs ├── StockUpdate.cs ├── StockUpdate.resx ├── StockView.Designer.cs ├── StockView.cs ├── StockView.resx ├── VendorDelete.Designer.cs ├── VendorDelete.cs ├── VendorDelete.resx ├── VendorInsert.Designer.cs ├── VendorInsert.cs ├── VendorInsert.resx ├── VendorUpdate.Designer.cs ├── VendorUpdate.cs ├── VendorUpdate.resx ├── VendorView.Designer.cs ├── VendorView.cs ├── VendorView.resx ├── bin └── Debug │ ├── ShopManagementSystem.exe │ ├── ShopManagementSystem.exe.config │ └── ShopManagementSystem.pdb └── obj └── Debug ├── CoreCompileInputs.cache ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── ShopManagementSystem.CustomerDelete.resources ├── ShopManagementSystem.CustomerInsert.resources ├── ShopManagementSystem.CustomerUpdate.resources ├── ShopManagementSystem.CustomerView.resources ├── ShopManagementSystem.Details.resources ├── ShopManagementSystem.Developers.resources ├── ShopManagementSystem.FormMenu.resources ├── ShopManagementSystem.MyApplications.resources ├── ShopManagementSystem.MyLogin.resources ├── ShopManagementSystem.OrderDelete.resources ├── ShopManagementSystem.OrderInsert.resources ├── ShopManagementSystem.OrderView.resources ├── ShopManagementSystem.ProductDelete.resources ├── ShopManagementSystem.ProductInsert.resources ├── ShopManagementSystem.ProductUpdate.resources ├── ShopManagementSystem.ProductView.resources ├── ShopManagementSystem.Properties.Resources.resources ├── ShopManagementSystem.ReportCustomer.resources ├── ShopManagementSystem.ReportOrder.resources ├── ShopManagementSystem.ReportProduct.resources ├── ShopManagementSystem.ReportStocks.resources ├── ShopManagementSystem.ReportVendors.resources ├── ShopManagementSystem.StockDelete.resources ├── ShopManagementSystem.StockInsert.resources ├── ShopManagementSystem.StockUpdate.resources ├── ShopManagementSystem.StockView.resources ├── ShopManagementSystem.VendorDelete.resources ├── ShopManagementSystem.VendorInsert.resources ├── ShopManagementSystem.VendorUpdate.resources ├── ShopManagementSystem.VendorView.resources ├── ShopManagementSystem.csproj.FileListAbsolute.txt ├── ShopManagementSystem.csproj.GenerateResource.Cache ├── ShopManagementSystem.csprojResolveAssemblyReference.cache ├── ShopManagementSystem.exe ├── ShopManagementSystem.pdb ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs /.vs/ShopManagementSystem/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/.vs/ShopManagementSystem/v15/.suo -------------------------------------------------------------------------------- /Output/Report order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/Report order.png -------------------------------------------------------------------------------- /Output/View product details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/View product details.png -------------------------------------------------------------------------------- /Output/add_customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/add_customer.png -------------------------------------------------------------------------------- /Output/create Order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/create Order.png -------------------------------------------------------------------------------- /Output/delete stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/delete stock.png -------------------------------------------------------------------------------- /Output/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/home.png -------------------------------------------------------------------------------- /Output/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/login.png -------------------------------------------------------------------------------- /Output/update vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/Output/update vendor.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /SQL file.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/SQL file.sql -------------------------------------------------------------------------------- /ShopManagementSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem.sln -------------------------------------------------------------------------------- /ShopManagementSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/App.config -------------------------------------------------------------------------------- /ShopManagementSystem/Connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Connect.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerDelete.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerDelete.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerDelete.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerDelete.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerDelete.resx -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerInsert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerInsert.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerInsert.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerInsert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerInsert.resx -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerUpdate.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerUpdate.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerUpdate.resx -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerView.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerView.cs -------------------------------------------------------------------------------- /ShopManagementSystem/CustomerView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/CustomerView.resx -------------------------------------------------------------------------------- /ShopManagementSystem/DGVPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/DGVPrinter.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Details.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Details.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Details.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Details.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Details.resx -------------------------------------------------------------------------------- /ShopManagementSystem/Developers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Developers.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Developers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Developers.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Developers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Developers.resx -------------------------------------------------------------------------------- /ShopManagementSystem/FormMenu.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/FormMenu.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/FormMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/FormMenu.cs -------------------------------------------------------------------------------- /ShopManagementSystem/FormMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/FormMenu.resx -------------------------------------------------------------------------------- /ShopManagementSystem/MyApplications.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyApplications.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/MyApplications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyApplications.cs -------------------------------------------------------------------------------- /ShopManagementSystem/MyApplications.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyApplications.resx -------------------------------------------------------------------------------- /ShopManagementSystem/MyLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyLogin.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/MyLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyLogin.cs -------------------------------------------------------------------------------- /ShopManagementSystem/MyLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/MyLogin.resx -------------------------------------------------------------------------------- /ShopManagementSystem/OrderDelete.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderDelete.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderDelete.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderDelete.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderDelete.resx -------------------------------------------------------------------------------- /ShopManagementSystem/OrderInsert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderInsert.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderInsert.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderInsert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderInsert.resx -------------------------------------------------------------------------------- /ShopManagementSystem/OrderView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderView.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderView.cs -------------------------------------------------------------------------------- /ShopManagementSystem/OrderView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/OrderView.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ProductDelete.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductDelete.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductDelete.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductDelete.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductDelete.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ProductInsert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductInsert.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductInsert.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductInsert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductInsert.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ProductUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductUpdate.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductUpdate.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductUpdate.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ProductView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductView.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductView.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ProductView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ProductView.resx -------------------------------------------------------------------------------- /ShopManagementSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Program.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /ShopManagementSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /ShopManagementSystem/ReportCustomer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportCustomer.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportCustomer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportCustomer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportCustomer.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ReportOrder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportOrder.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportOrder.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportOrder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportOrder.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ReportProduct.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportProduct.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportProduct.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportProduct.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportProduct.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ReportStocks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportStocks.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportStocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportStocks.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportStocks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportStocks.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ReportVendors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportVendors.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportVendors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportVendors.cs -------------------------------------------------------------------------------- /ShopManagementSystem/ReportVendors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ReportVendors.resx -------------------------------------------------------------------------------- /ShopManagementSystem/ShopManagementSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/ShopManagementSystem.csproj -------------------------------------------------------------------------------- /ShopManagementSystem/SqlConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/SqlConnect.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockDelete.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockDelete.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockDelete.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockDelete.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockDelete.resx -------------------------------------------------------------------------------- /ShopManagementSystem/StockInsert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockInsert.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockInsert.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockInsert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockInsert.resx -------------------------------------------------------------------------------- /ShopManagementSystem/StockUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockUpdate.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockUpdate.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockUpdate.resx -------------------------------------------------------------------------------- /ShopManagementSystem/StockView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockView.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockView.cs -------------------------------------------------------------------------------- /ShopManagementSystem/StockView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/StockView.resx -------------------------------------------------------------------------------- /ShopManagementSystem/VendorDelete.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorDelete.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorDelete.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorDelete.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorDelete.resx -------------------------------------------------------------------------------- /ShopManagementSystem/VendorInsert.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorInsert.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorInsert.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorInsert.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorInsert.resx -------------------------------------------------------------------------------- /ShopManagementSystem/VendorUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorUpdate.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorUpdate.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorUpdate.resx -------------------------------------------------------------------------------- /ShopManagementSystem/VendorView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorView.Designer.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorView.cs -------------------------------------------------------------------------------- /ShopManagementSystem/VendorView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/VendorView.resx -------------------------------------------------------------------------------- /ShopManagementSystem/bin/Debug/ShopManagementSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/bin/Debug/ShopManagementSystem.exe -------------------------------------------------------------------------------- /ShopManagementSystem/bin/Debug/ShopManagementSystem.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/bin/Debug/ShopManagementSystem.exe.config -------------------------------------------------------------------------------- /ShopManagementSystem/bin/Debug/ShopManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/bin/Debug/ShopManagementSystem.pdb -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 858cc821fa47832452bce9cef69f865da305a8a9 2 | -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerDelete.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerDelete.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerInsert.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerInsert.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerUpdate.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerUpdate.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.CustomerView.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.Details.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.Details.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.Developers.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.Developers.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.FormMenu.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.FormMenu.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.MyApplications.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.MyApplications.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.MyLogin.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.MyLogin.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderDelete.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderDelete.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderInsert.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderInsert.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.OrderView.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductDelete.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductDelete.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductInsert.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductInsert.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductUpdate.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductUpdate.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ProductView.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.Properties.Resources.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportCustomer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportCustomer.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportOrder.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportOrder.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportProduct.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportProduct.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportStocks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportStocks.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportVendors.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.ReportVendors.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.StockDelete.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.StockDelete.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.StockInsert.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.StockInsert.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.StockUpdate.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.StockUpdate.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.StockView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.StockView.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorDelete.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorDelete.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorInsert.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorInsert.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorUpdate.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorUpdate.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorView.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.VendorView.resources -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.exe -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/ShopManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjain04/Shop-Management-System/HEAD/ShopManagementSystem/obj/Debug/ShopManagementSystem.pdb -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShopManagementSystem/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------