├── .gitattributes ├── .gitignore ├── README.md ├── inventory.sln ├── inventory ├── A_customer.Designer.cs ├── A_customer.cs ├── A_customer.resx ├── A_item.Designer.cs ├── A_item.cs ├── A_item.resx ├── A_purchase.Designer.cs ├── A_purchase.cs ├── A_purchase.resx ├── A_sale.Designer.cs ├── A_sale.cs ├── A_sale.resx ├── A_supplier.Designer.cs ├── A_supplier.cs ├── A_supplier.resx ├── About.Designer.cs ├── About.cs ├── About.resx ├── ClassDiagram1.cd ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Inventory.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── V_item.Designer.cs ├── V_item.cs ├── V_item.resx ├── V_purchase.Designer.cs ├── V_purchase.cs ├── V_purchase.resx ├── V_sale.Designer.cs ├── V_sale.cs ├── V_sale.resx ├── V_supplier.Designer.cs ├── V_supplier.cs ├── V_supplier.resx ├── app.config ├── bin │ ├── Debug │ │ ├── inventory.exe.config │ │ ├── inventory.vshost.exe.config │ │ └── inventory.vshost.exe.manifest │ └── Release │ │ └── inventory.exe.config ├── help.Designer.cs ├── help.cs ├── help.resx ├── inventory.csproj ├── loading.Designer.cs ├── loading.cs ├── loading.resx ├── obj │ └── x86 │ │ ├── Debug │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── inventory.A_customer.resources │ │ ├── inventory.A_item.resources │ │ ├── inventory.A_purchase.resources │ │ ├── inventory.A_sale.resources │ │ ├── inventory.A_supplier.resources │ │ ├── inventory.About.resources │ │ ├── inventory.Form1.resources │ │ ├── inventory.Properties.Resources.resources │ │ ├── inventory.V_item.resources │ │ ├── inventory.V_purchase.resources │ │ ├── inventory.V_sale.resources │ │ ├── inventory.V_supplier.resources │ │ ├── inventory.csproj.FileListAbsolute.txt │ │ ├── inventory.help.resources │ │ ├── inventory.loading.resources │ │ └── inventory.v_customer.resources │ │ └── Release │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ ├── inventory.A_customer.resources │ │ ├── inventory.A_item.resources │ │ ├── inventory.A_purchase.resources │ │ ├── inventory.A_sale.resources │ │ ├── inventory.A_supplier.resources │ │ ├── inventory.About.resources │ │ ├── inventory.Form1.resources │ │ ├── inventory.Properties.Resources.resources │ │ ├── inventory.V_item.resources │ │ ├── inventory.V_purchase.resources │ │ ├── inventory.V_sale.resources │ │ ├── inventory.V_supplier.resources │ │ ├── inventory.csproj.FileListAbsolute.txt │ │ ├── inventory.help.resources │ │ ├── inventory.loading.resources │ │ └── inventory.v_customer.resources ├── supermartDataSet.Designer.cs ├── supermartDataSet.xsc ├── supermartDataSet.xsd ├── supermartDataSet.xss ├── supermartDataSet1.Designer.cs ├── supermartDataSet1.xsc ├── supermartDataSet1.xsd ├── supermartDataSet1.xss ├── supermartDataSet2.Designer.cs ├── supermartDataSet2.xsc ├── supermartDataSet2.xsd ├── supermartDataSet2.xss ├── v_customer.Designer.cs ├── v_customer.cs └── v_customer.resx ├── supermart.mdf └── supermart_log.ldf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /inventory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory.sln -------------------------------------------------------------------------------- /inventory/A_customer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_customer.Designer.cs -------------------------------------------------------------------------------- /inventory/A_customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_customer.cs -------------------------------------------------------------------------------- /inventory/A_customer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_customer.resx -------------------------------------------------------------------------------- /inventory/A_item.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_item.Designer.cs -------------------------------------------------------------------------------- /inventory/A_item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_item.cs -------------------------------------------------------------------------------- /inventory/A_item.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_item.resx -------------------------------------------------------------------------------- /inventory/A_purchase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_purchase.Designer.cs -------------------------------------------------------------------------------- /inventory/A_purchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_purchase.cs -------------------------------------------------------------------------------- /inventory/A_purchase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_purchase.resx -------------------------------------------------------------------------------- /inventory/A_sale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_sale.Designer.cs -------------------------------------------------------------------------------- /inventory/A_sale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_sale.cs -------------------------------------------------------------------------------- /inventory/A_sale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_sale.resx -------------------------------------------------------------------------------- /inventory/A_supplier.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_supplier.Designer.cs -------------------------------------------------------------------------------- /inventory/A_supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_supplier.cs -------------------------------------------------------------------------------- /inventory/A_supplier.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/A_supplier.resx -------------------------------------------------------------------------------- /inventory/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/About.Designer.cs -------------------------------------------------------------------------------- /inventory/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/About.cs -------------------------------------------------------------------------------- /inventory/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/About.resx -------------------------------------------------------------------------------- /inventory/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Form1.Designer.cs -------------------------------------------------------------------------------- /inventory/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Form1.cs -------------------------------------------------------------------------------- /inventory/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Form1.resx -------------------------------------------------------------------------------- /inventory/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Inventory.cs -------------------------------------------------------------------------------- /inventory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Program.cs -------------------------------------------------------------------------------- /inventory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /inventory/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /inventory/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Properties/Resources.resx -------------------------------------------------------------------------------- /inventory/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /inventory/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/Properties/Settings.settings -------------------------------------------------------------------------------- /inventory/V_item.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_item.Designer.cs -------------------------------------------------------------------------------- /inventory/V_item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_item.cs -------------------------------------------------------------------------------- /inventory/V_item.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_item.resx -------------------------------------------------------------------------------- /inventory/V_purchase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_purchase.Designer.cs -------------------------------------------------------------------------------- /inventory/V_purchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_purchase.cs -------------------------------------------------------------------------------- /inventory/V_purchase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_purchase.resx -------------------------------------------------------------------------------- /inventory/V_sale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_sale.Designer.cs -------------------------------------------------------------------------------- /inventory/V_sale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_sale.cs -------------------------------------------------------------------------------- /inventory/V_sale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_sale.resx -------------------------------------------------------------------------------- /inventory/V_supplier.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_supplier.Designer.cs -------------------------------------------------------------------------------- /inventory/V_supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_supplier.cs -------------------------------------------------------------------------------- /inventory/V_supplier.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/V_supplier.resx -------------------------------------------------------------------------------- /inventory/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/app.config -------------------------------------------------------------------------------- /inventory/bin/Debug/inventory.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/bin/Debug/inventory.exe.config -------------------------------------------------------------------------------- /inventory/bin/Debug/inventory.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/bin/Debug/inventory.vshost.exe.config -------------------------------------------------------------------------------- /inventory/bin/Debug/inventory.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/bin/Debug/inventory.vshost.exe.manifest -------------------------------------------------------------------------------- /inventory/bin/Release/inventory.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/bin/Release/inventory.exe.config -------------------------------------------------------------------------------- /inventory/help.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/help.Designer.cs -------------------------------------------------------------------------------- /inventory/help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/help.cs -------------------------------------------------------------------------------- /inventory/help.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/help.resx -------------------------------------------------------------------------------- /inventory/inventory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/inventory.csproj -------------------------------------------------------------------------------- /inventory/loading.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/loading.Designer.cs -------------------------------------------------------------------------------- /inventory/loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/loading.cs -------------------------------------------------------------------------------- /inventory/loading.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/loading.resx -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.A_customer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.A_customer.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.A_item.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.A_item.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.A_purchase.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.A_purchase.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.A_sale.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.A_sale.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.A_supplier.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.A_supplier.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.About.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.About.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.Form1.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.Properties.Resources.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.V_item.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.V_item.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.V_purchase.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.V_purchase.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.V_sale.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.V_sale.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.V_supplier.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.V_supplier.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.help.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.loading.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.loading.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Debug/inventory.v_customer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Debug/inventory.v_customer.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /inventory/obj/x86/Release/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.A_customer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.A_customer.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.A_item.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.A_item.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.A_purchase.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.A_purchase.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.A_sale.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.A_sale.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.A_supplier.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.A_supplier.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.About.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.About.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.Form1.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.Properties.Resources.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.V_item.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.V_item.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.V_purchase.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.V_purchase.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.V_sale.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.V_sale.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.V_supplier.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.V_supplier.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.help.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.help.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.loading.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.loading.resources -------------------------------------------------------------------------------- /inventory/obj/x86/Release/inventory.v_customer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/obj/x86/Release/inventory.v_customer.resources -------------------------------------------------------------------------------- /inventory/supermartDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet.Designer.cs -------------------------------------------------------------------------------- /inventory/supermartDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/supermartDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet.xsd -------------------------------------------------------------------------------- /inventory/supermartDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/supermartDataSet1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet1.Designer.cs -------------------------------------------------------------------------------- /inventory/supermartDataSet1.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/supermartDataSet1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet1.xsd -------------------------------------------------------------------------------- /inventory/supermartDataSet1.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/supermartDataSet2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet2.Designer.cs -------------------------------------------------------------------------------- /inventory/supermartDataSet2.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/supermartDataSet2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/supermartDataSet2.xsd -------------------------------------------------------------------------------- /inventory/supermartDataSet2.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/v_customer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/v_customer.Designer.cs -------------------------------------------------------------------------------- /inventory/v_customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/v_customer.cs -------------------------------------------------------------------------------- /inventory/v_customer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/inventory/v_customer.resx -------------------------------------------------------------------------------- /supermart.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/supermart.mdf -------------------------------------------------------------------------------- /supermart_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainHaider/Inventory-Management-System/HEAD/supermart_log.ldf --------------------------------------------------------------------------------