├── .gitattributes ├── LICENSE ├── Medical_Store_Management_SoftWare.sln ├── Medical_Store_Management_SoftWare.suo ├── Medical_Store_Management_SoftWare ├── App.config ├── Bill.Designer.cs ├── Bill.cs ├── Bill.resx ├── Business_Logic.cs ├── ChangePassword.Designer.cs ├── ChangePassword.cs ├── ChangePassword.resx ├── Credential_DB.cs ├── CurrentTransaction_DB.cs ├── Data │ ├── 246x0w.ico │ ├── 280px-Indian_Pharmacist_Identification_Mark.svg.ico │ ├── 51W9tUb8blL.ico │ ├── Thumbs.db │ ├── banner.jpg │ ├── h-slide.png │ └── h4-slide.png ├── DeleteUser.Designer.cs ├── DeleteUser.cs ├── DeleteUser.resx ├── EditProduct.Designer.cs ├── EditProduct.cs ├── EditProduct.resx ├── ExistingTransaction.Designer.cs ├── ExistingTransaction.cs ├── ExistingTransaction.resx ├── Home.Designer.cs ├── Home.cs ├── Home.resx ├── Login.Designer.cs ├── Login.cs ├── Login.resx ├── Medical_Store_Management_SoftWare.csproj ├── Medical_Store_Management_SoftWare.csproj.user ├── NewTransaction.Designer.cs ├── NewTransaction.cs ├── NewTransaction.resx ├── NewUser.Designer.cs ├── NewUser.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SignUp.Designer.cs ├── SignUp.cs ├── SignUp.resx ├── Storage_DB.cs ├── Store.Designer.cs ├── Store.cs ├── Store.resx ├── Transaction_DB.cs ├── ViewUser.Designer.cs ├── ViewUser.cs ├── ViewUser.resx ├── bin │ └── Debug │ │ ├── Database.accdb │ │ ├── Medical_Store_Management_SoftWare.exe │ │ ├── Medical_Store_Management_SoftWare.exe.config │ │ ├── Medical_Store_Management_SoftWare.pdb │ │ ├── Medical_Store_Management_SoftWare.vshost.exe │ │ ├── Medical_Store_Management_SoftWare.vshost.exe.config │ │ └── Medical_Store_Management_SoftWare.vshost.exe.manifest ├── newUser.resx └── obj │ └── x86 │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Medical_Store_Management_SoftWare.Bill.resources │ ├── Medical_Store_Management_SoftWare.ChangePassword.resources │ ├── Medical_Store_Management_SoftWare.DeleteUser.resources │ ├── Medical_Store_Management_SoftWare.EditProduct.resources │ ├── Medical_Store_Management_SoftWare.ExistingTransaction.resources │ ├── Medical_Store_Management_SoftWare.Home.resources │ ├── Medical_Store_Management_SoftWare.Login.resources │ ├── Medical_Store_Management_SoftWare.NewTransaction.resources │ ├── Medical_Store_Management_SoftWare.NewUser.resources │ ├── Medical_Store_Management_SoftWare.Properties.Resources.resources │ ├── Medical_Store_Management_SoftWare.SignUp.resources │ ├── Medical_Store_Management_SoftWare.Store.resources │ ├── Medical_Store_Management_SoftWare.ViewUser.resources │ ├── Medical_Store_Management_SoftWare.csproj.FileListAbsolute.txt │ ├── Medical_Store_Management_SoftWare.csproj.GenerateResource.Cache │ ├── Medical_Store_Management_SoftWare.csprojResolveAssemblyReference.cache │ ├── Medical_Store_Management_SoftWare.exe │ ├── Medical_Store_Management_SoftWare.pdb │ ├── Medical_Store_SoftWare.csproj.FileListAbsolute.txt │ ├── Medical_Store_SoftWare.csproj.GenerateResource.Cache │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── README.md └── Screenshot ├── Screenshot (319).png ├── Screenshot (320).png ├── Screenshot (322).png ├── Screenshot (323).png ├── Screenshot (324).png ├── Screenshot (325).png ├── Screenshot (326).png ├── Screenshot (327).png ├── Screenshot (328).png ├── Screenshot (329).png ├── Screenshot (330).png ├── Screenshot (331).png ├── Screenshot (332).png └── Screenshot (333).png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/LICENSE -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare.sln -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare.suo -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/App.config -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Bill.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Bill.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Bill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Bill.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Bill.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Bill.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Business_Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Business_Logic.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ChangePassword.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ChangePassword.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ChangePassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ChangePassword.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ChangePassword.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ChangePassword.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Credential_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Credential_DB.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/CurrentTransaction_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/CurrentTransaction_DB.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/246x0w.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/246x0w.ico -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/280px-Indian_Pharmacist_Identification_Mark.svg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/280px-Indian_Pharmacist_Identification_Mark.svg.ico -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/51W9tUb8blL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/51W9tUb8blL.ico -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/Thumbs.db -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/banner.jpg -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/h-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/h-slide.png -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Data/h4-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Data/h4-slide.png -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/DeleteUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/DeleteUser.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/DeleteUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/DeleteUser.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/DeleteUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/DeleteUser.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/EditProduct.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/EditProduct.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/EditProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/EditProduct.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/EditProduct.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/EditProduct.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ExistingTransaction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ExistingTransaction.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ExistingTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ExistingTransaction.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ExistingTransaction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ExistingTransaction.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Home.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Home.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Home.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Home.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Home.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Home.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Login.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Login.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Login.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Medical_Store_Management_SoftWare.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Medical_Store_Management_SoftWare.csproj -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Medical_Store_Management_SoftWare.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Medical_Store_Management_SoftWare.csproj.user -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/NewTransaction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/NewTransaction.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/NewTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/NewTransaction.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/NewTransaction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/NewTransaction.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/NewUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/NewUser.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/NewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/NewUser.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Program.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Properties/Resources.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Properties/Settings.settings -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/SignUp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/SignUp.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/SignUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/SignUp.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/SignUp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/SignUp.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Storage_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Storage_DB.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Store.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Store.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Store.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Store.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Store.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/Transaction_DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/Transaction_DB.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ViewUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ViewUser.Designer.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ViewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ViewUser.cs -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/ViewUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/ViewUser.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Database.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Database.accdb -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.exe -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.exe.config -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.pdb -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe.config -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/bin/Debug/Medical_Store_Management_SoftWare.vshost.exe.manifest -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/newUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/newUser.resx -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Bill.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Bill.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ChangePassword.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ChangePassword.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.DeleteUser.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.DeleteUser.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.EditProduct.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.EditProduct.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ExistingTransaction.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ExistingTransaction.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Home.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Home.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Login.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Login.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.NewTransaction.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.NewTransaction.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.NewUser.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.NewUser.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Properties.Resources.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.SignUp.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.SignUp.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Store.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.Store.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ViewUser.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.ViewUser.resources -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.exe -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_Management_SoftWare.pdb -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_SoftWare.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_SoftWare.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_SoftWare.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/Medical_Store_SoftWare.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Medical_Store_Management_SoftWare/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Medical_Store_Management_SoftWare/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/Screenshot (319).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (319).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (320).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (320).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (322).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (322).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (323).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (323).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (324).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (324).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (325).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (325).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (326).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (326).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (327).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (327).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (328).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (328).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (329).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (329).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (330).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (330).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (331).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (331).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (332).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (332).png -------------------------------------------------------------------------------- /Screenshot/Screenshot (333).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atul-Anand-Jha/Pharmacy_Management_Software/HEAD/Screenshot/Screenshot (333).png --------------------------------------------------------------------------------