├── .gitattributes ├── CafeShopManagementSystem ├── .vs │ └── CafeShopManagementSystem │ │ └── v16 │ │ └── .suo ├── CafeShopManagementSystem.sln └── CafeShopManagementSystem │ ├── AdminAddProducts.Designer.cs │ ├── AdminAddProducts.cs │ ├── AdminAddProducts.resx │ ├── AdminAddProductsData.cs │ ├── AdminAddUsers.Designer.cs │ ├── AdminAddUsers.cs │ ├── AdminAddUsers.resx │ ├── AdminAddUsersData.cs │ ├── AdminDashboardForm.Designer.cs │ ├── AdminDashboardForm.cs │ ├── AdminDashboardForm.resx │ ├── AdminMainForm.Designer.cs │ ├── AdminMainForm.cs │ ├── AdminMainForm.resx │ ├── App.config │ ├── Assets │ ├── cafeShop.jpg │ ├── icons8_Cafe_100px_6.png │ ├── icons8_Money_Bag_Bitcoin_90px.png │ ├── icons8_group_90px_1.png │ ├── icons8_money_90px.png │ └── icons8_user_filled_90px.png │ ├── CafeShopManagementSystem.csproj │ ├── CashierCustomersForm.Designer.cs │ ├── CashierCustomersForm.cs │ ├── CashierCustomersForm.resx │ ├── CashierMainForm.Designer.cs │ ├── CashierMainForm.cs │ ├── CashierMainForm.resx │ ├── CashierOrderForm.Designer.cs │ ├── CashierOrderForm.cs │ ├── CashierOrderForm.resx │ ├── CashierOrderFormProdData.cs │ ├── CashierOrdersData.cs │ ├── CustomersData.cs │ ├── Data.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Product_Directory │ ├── PROD-1.jpg │ ├── PROD-2.jpg │ ├── PROD-3.jpg │ ├── PROD-4.jpg │ ├── PROD-5.jpg │ └── wqeqwe.jpg │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RegisterForm.Designer.cs │ ├── RegisterForm.cs │ ├── RegisterForm.resx │ ├── User_Directory │ ├── Testing.jpg │ ├── test2.jpg │ └── test3.jpg │ ├── bin │ └── Debug │ │ ├── CafeShopManagementSystem.exe │ │ ├── CafeShopManagementSystem.exe.config │ │ ├── CafeShopManagementSystem.pdb │ │ ├── User_Directory │ │ ├── Test.jpg │ │ └── test123.jpg │ │ └── source │ │ └── repos │ │ └── CafeShopManagementSystem │ │ └── CafeShopManagementSystem │ │ └── User_Directory │ │ ├── Test.jpg │ │ ├── admin1.jpg │ │ ├── test3.jpg │ │ └── testing.jpg │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── CafeShopManagementSystem.AdminAddProducts.resources │ ├── CafeShopManagementSystem.AdminAddUsers.resources │ ├── CafeShopManagementSystem.AdminDashboardForm.resources │ ├── CafeShopManagementSystem.AdminMainForm.resources │ ├── CafeShopManagementSystem.CashierCustomersForm.resources │ ├── CafeShopManagementSystem.CashierMainForm.resources │ ├── CafeShopManagementSystem.CashierOrderForm.resources │ ├── CafeShopManagementSystem.Form1.resources │ ├── CafeShopManagementSystem.Properties.Resources.resources │ ├── CafeShopManagementSystem.RegisterForm.resources │ ├── CafeShopManagementSystem.csproj.AssemblyReference.cache │ ├── CafeShopManagementSystem.csproj.CoreCompileInputs.cache │ ├── CafeShopManagementSystem.csproj.FileListAbsolute.txt │ ├── CafeShopManagementSystem.csproj.GenerateResource.cache │ ├── CafeShopManagementSystem.exe │ ├── CafeShopManagementSystem.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── README.md └── gitattributes /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /CafeShopManagementSystem/.vs/CafeShopManagementSystem/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/.vs/CafeShopManagementSystem/v16/.suo -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem.sln -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProducts.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProductsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddProductsData.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsers.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsersData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminAddUsersData.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminDashboardForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/AdminMainForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/App.config -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/cafeShop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/cafeShop.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_Cafe_100px_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_Cafe_100px_6.png -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_Money_Bag_Bitcoin_90px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_Money_Bag_Bitcoin_90px.png -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_group_90px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_group_90px_1.png -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_money_90px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_money_90px.png -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_user_filled_90px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Assets/icons8_user_filled_90px.png -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CafeShopManagementSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CafeShopManagementSystem.csproj -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierCustomersForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierMainForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderFormProdData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierOrderFormProdData.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CashierOrdersData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CashierOrdersData.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/CustomersData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/CustomersData.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Data.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Form1.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Form1.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Form1.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-1.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-2.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-3.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-4.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/PROD-5.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/wqeqwe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Product_Directory/wqeqwe.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Program.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.Designer.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/RegisterForm.resx -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/Testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/Testing.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test2.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test3.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.exe -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.exe.config -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/CafeShopManagementSystem.pdb -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/User_Directory/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/User_Directory/Test.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/User_Directory/test123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/User_Directory/test123.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/Test.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/admin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/admin1.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/test3.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/bin/Debug/source/repos/CafeShopManagementSystem/CafeShopManagementSystem/User_Directory/testing.jpg -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminAddProducts.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminAddProducts.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminAddUsers.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminAddUsers.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminDashboardForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminDashboardForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminMainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.AdminMainForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierCustomersForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierCustomersForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierMainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierMainForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierOrderForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.CashierOrderForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.Form1.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.Properties.Resources.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.RegisterForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.RegisterForm.resources -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 00d4435466ae6649fa95a909b017b2cd6d598af4 2 | -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.exe -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/CafeShopManagementSystem.pdb -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/CafeShopManagementSystem/CafeShopManagementSystem/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/README.md -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoman2/CafeShopManagementSystemCSharp/HEAD/gitattributes --------------------------------------------------------------------------------