├── .vs └── AnyStore │ └── v14 │ └── .suo ├── AnyStore.sln ├── AnyStore ├── AnyStore.csproj ├── App.config ├── BLL │ ├── DeaCustBLL.cs │ ├── categoriesBLL.cs │ ├── loginBLL.cs │ ├── productsBLL.cs │ ├── transactionDetailBLL.cs │ ├── transactionsBLL.cs │ └── userBLL.cs ├── DAL │ ├── DGVPrinter.cs │ ├── DeaCustDAL.cs │ ├── categoriesDAL.cs │ ├── loginDAL.cs │ ├── productsDAL.cs │ ├── transactionDAL.cs │ ├── transactionDetailDAL.cs │ └── userDAL.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── UI │ ├── frmAdminDashboard.Designer.cs │ ├── frmAdminDashboard.cs │ ├── frmAdminDashboard.resx │ ├── frmCategories.Designer.cs │ ├── frmCategories.cs │ ├── frmCategories.resx │ ├── frmDeaCust.Designer.cs │ ├── frmDeaCust.cs │ ├── frmDeaCust.resx │ ├── frmInventory.Designer.cs │ ├── frmInventory.cs │ ├── frmInventory.resx │ ├── frmLogin.Designer.cs │ ├── frmLogin.cs │ ├── frmLogin.resx │ ├── frmProducts.Designer.cs │ ├── frmProducts.cs │ ├── frmProducts.resx │ ├── frmPurchaseAndSales.Designer.cs │ ├── frmPurchaseAndSales.cs │ ├── frmPurchaseAndSales.resx │ ├── frmTransactions.Designer.cs │ ├── frmTransactions.cs │ ├── frmTransactions.resx │ ├── frmUserDashboard.Designer.cs │ ├── frmUserDashboard.cs │ ├── frmUserDashboard.resx │ ├── frmUsers.Designer.cs │ ├── frmUsers.cs │ └── frmUsers.resx ├── bin │ └── Debug │ │ ├── AnyStore.exe │ │ ├── AnyStore.exe.config │ │ ├── AnyStore.pdb │ │ ├── AnyStore.vshost.exe │ │ ├── AnyStore.vshost.exe.config │ │ └── AnyStore.vshost.exe.manifest └── obj │ └── Debug │ ├── AnyStore.Properties.Resources.resources │ ├── AnyStore.UI.frmCategories.resources │ ├── AnyStore.UI.frmDeaCust.resources │ ├── AnyStore.UI.frmInventory.resources │ ├── AnyStore.UI.frmLogin.resources │ ├── AnyStore.UI.frmProducts.resources │ ├── AnyStore.UI.frmPurchaseAndSales.resources │ ├── AnyStore.UI.frmTransactions.resources │ ├── AnyStore.UI.frmUsers.resources │ ├── AnyStore.csproj.FileListAbsolute.txt │ ├── AnyStore.csproj.GenerateResource.Cache │ ├── AnyStore.csprojResolveAssemblyReference.cache │ ├── AnyStore.exe │ ├── AnyStore.frmAdminDashboard.resources │ ├── AnyStore.frmUserDashboard.resources │ ├── AnyStore.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── DATABASE.zip ├── LICENSE └── README.md /.vs/AnyStore/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/.vs/AnyStore/v14/.suo -------------------------------------------------------------------------------- /AnyStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore.sln -------------------------------------------------------------------------------- /AnyStore/AnyStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/AnyStore.csproj -------------------------------------------------------------------------------- /AnyStore/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/App.config -------------------------------------------------------------------------------- /AnyStore/BLL/DeaCustBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/DeaCustBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/categoriesBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/categoriesBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/loginBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/loginBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/productsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/productsBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/transactionDetailBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/transactionDetailBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/transactionsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/transactionsBLL.cs -------------------------------------------------------------------------------- /AnyStore/BLL/userBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/BLL/userBLL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/DGVPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/DGVPrinter.cs -------------------------------------------------------------------------------- /AnyStore/DAL/DeaCustDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/DeaCustDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/categoriesDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/categoriesDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/loginDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/loginDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/productsDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/productsDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/transactionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/transactionDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/transactionDetailDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/transactionDetailDAL.cs -------------------------------------------------------------------------------- /AnyStore/DAL/userDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/DAL/userDAL.cs -------------------------------------------------------------------------------- /AnyStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Program.cs -------------------------------------------------------------------------------- /AnyStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AnyStore/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AnyStore/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Properties/Resources.resx -------------------------------------------------------------------------------- /AnyStore/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AnyStore/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/Properties/Settings.settings -------------------------------------------------------------------------------- /AnyStore/UI/frmAdminDashboard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmAdminDashboard.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmAdminDashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmAdminDashboard.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmAdminDashboard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmAdminDashboard.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmCategories.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmCategories.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmCategories.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmCategories.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmCategories.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmDeaCust.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmDeaCust.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmDeaCust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmDeaCust.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmDeaCust.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmDeaCust.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmInventory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmInventory.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmInventory.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmInventory.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmInventory.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmLogin.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmLogin.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmLogin.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmProducts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmProducts.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmProducts.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmProducts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmProducts.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmPurchaseAndSales.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmPurchaseAndSales.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmPurchaseAndSales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmPurchaseAndSales.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmPurchaseAndSales.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmPurchaseAndSales.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmTransactions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmTransactions.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmTransactions.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmTransactions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmTransactions.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmUserDashboard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUserDashboard.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmUserDashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUserDashboard.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmUserDashboard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUserDashboard.resx -------------------------------------------------------------------------------- /AnyStore/UI/frmUsers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUsers.Designer.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUsers.cs -------------------------------------------------------------------------------- /AnyStore/UI/frmUsers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/UI/frmUsers.resx -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.exe -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.exe.config -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.pdb -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.vshost.exe -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.vshost.exe.config -------------------------------------------------------------------------------- /AnyStore/bin/Debug/AnyStore.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/bin/Debug/AnyStore.vshost.exe.manifest -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.Properties.Resources.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmCategories.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmCategories.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmDeaCust.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmDeaCust.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmInventory.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmInventory.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmLogin.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmLogin.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmProducts.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmProducts.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmPurchaseAndSales.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmPurchaseAndSales.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmTransactions.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmTransactions.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.UI.frmUsers.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.UI.frmUsers.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.exe -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.frmAdminDashboard.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.frmAdminDashboard.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.frmUserDashboard.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.frmUserDashboard.resources -------------------------------------------------------------------------------- /AnyStore/obj/Debug/AnyStore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/AnyStore.pdb -------------------------------------------------------------------------------- /AnyStore/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AnyStore/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/AnyStore/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AnyStore/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AnyStore/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AnyStore/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DATABASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/DATABASE.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vijaythapa333/anystore/HEAD/README.md --------------------------------------------------------------------------------