├── .gitattributes ├── .gitignore ├── Bill1.pdf ├── PizzaPoint.sln ├── PizzaPoint.sql ├── PizzaPoint ├── App.config ├── Bill.resx ├── Bill │ └── Bill.xml ├── Bill2.Designer.cs ├── Bill2.cs ├── Bill2.resx ├── BillDataSet.Designer.cs ├── BillDataSet.xsc ├── BillDataSet.xsd ├── BillDataSet.xss ├── BillDetails.cs ├── BillForm.Designer.cs ├── BillForm.cs ├── BillForm.resx ├── BillPrint.Designer.cs ├── BillPrint.cs ├── BillPrint.resx ├── BillSampleBill.xml ├── CashierRegister.Designer.cs ├── CashierRegister.cs ├── CashierRegister.resx ├── CrystalReport1.cs ├── CrystalReport1.rpt ├── Form1.resx ├── Login.Designer.cs ├── Login.cs ├── Login.resx ├── ManageProducts.Designer.cs ├── ManageProducts.cs ├── ManageProducts.resx ├── Order.Designer.cs ├── Order.cs ├── Order.resx ├── OrdersDetails.cs ├── PizzaPoint.csproj ├── PizzaPointDataSet.Designer.cs ├── PizzaPointDataSet.xsc ├── PizzaPointDataSet.xsd ├── PizzaPointDataSet.xss ├── PizzaPointDataSet1.Designer.cs ├── PizzaPointDataSet1.xsc ├── PizzaPointDataSet1.xsd ├── PizzaPointDataSet1.xss ├── Prices.Designer.cs ├── Prices.cs ├── Prices.resx ├── Product.Designer.cs ├── Product.cs ├── Product.resx ├── Products.Designer.cs ├── Products.xsc ├── Products.xsd ├── Products.xss ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── Bill.datasource │ │ ├── BillDetails.datasource │ │ ├── EmployeeRecord.datasource │ │ ├── GetProductList_Result.datasource │ │ ├── Inventory.datasource │ │ ├── Order.datasource │ │ ├── Orders.datasource │ │ ├── OrdersDetails.datasource │ │ ├── PizzaPoint.ProductsTableAdapters.ProductsTableAdapter.datasource │ │ ├── PizzaPoint.ProductsTableAdapters.TableAdapterManager+UpdateOrderOption.datasource │ │ ├── PizzaPoint.ProductsTableAdapters.TableAdapterManager.datasource │ │ ├── Product.datasource │ │ └── Users.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── pizzapoint.jpg ├── Sales.Designer.cs ├── Sales.cs ├── Sales.resx ├── SplashScreen.Designer.cs ├── SplashScreen.cs ├── SplashScreen.resx ├── Users.Designer.cs ├── Users.cs ├── Users.resx ├── UsersDataSet.Designer.cs ├── UsersDataSet.xsc ├── UsersDataSet.xsd ├── UsersDataSet.xss ├── packages.config ├── rptOrders.cs └── rptOrders.rpt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Bill1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/Bill1.pdf -------------------------------------------------------------------------------- /PizzaPoint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint.sln -------------------------------------------------------------------------------- /PizzaPoint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint.sql -------------------------------------------------------------------------------- /PizzaPoint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/App.config -------------------------------------------------------------------------------- /PizzaPoint/Bill.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Bill.resx -------------------------------------------------------------------------------- /PizzaPoint/Bill/Bill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Bill/Bill.xml -------------------------------------------------------------------------------- /PizzaPoint/Bill2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Bill2.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Bill2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Bill2.cs -------------------------------------------------------------------------------- /PizzaPoint/Bill2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Bill2.resx -------------------------------------------------------------------------------- /PizzaPoint/BillDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillDataSet.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/BillDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/BillDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillDataSet.xsd -------------------------------------------------------------------------------- /PizzaPoint/BillDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/BillDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillDetails.cs -------------------------------------------------------------------------------- /PizzaPoint/BillForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillForm.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/BillForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillForm.cs -------------------------------------------------------------------------------- /PizzaPoint/BillForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillForm.resx -------------------------------------------------------------------------------- /PizzaPoint/BillPrint.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillPrint.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/BillPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillPrint.cs -------------------------------------------------------------------------------- /PizzaPoint/BillPrint.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillPrint.resx -------------------------------------------------------------------------------- /PizzaPoint/BillSampleBill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/BillSampleBill.xml -------------------------------------------------------------------------------- /PizzaPoint/CashierRegister.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/CashierRegister.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/CashierRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/CashierRegister.cs -------------------------------------------------------------------------------- /PizzaPoint/CashierRegister.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/CashierRegister.resx -------------------------------------------------------------------------------- /PizzaPoint/CrystalReport1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/CrystalReport1.cs -------------------------------------------------------------------------------- /PizzaPoint/CrystalReport1.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/CrystalReport1.rpt -------------------------------------------------------------------------------- /PizzaPoint/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Form1.resx -------------------------------------------------------------------------------- /PizzaPoint/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Login.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Login.cs -------------------------------------------------------------------------------- /PizzaPoint/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Login.resx -------------------------------------------------------------------------------- /PizzaPoint/ManageProducts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/ManageProducts.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/ManageProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/ManageProducts.cs -------------------------------------------------------------------------------- /PizzaPoint/ManageProducts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/ManageProducts.resx -------------------------------------------------------------------------------- /PizzaPoint/Order.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Order.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Order.cs -------------------------------------------------------------------------------- /PizzaPoint/Order.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Order.resx -------------------------------------------------------------------------------- /PizzaPoint/OrdersDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/OrdersDetails.cs -------------------------------------------------------------------------------- /PizzaPoint/PizzaPoint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/PizzaPoint.csproj -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/PizzaPointDataSet.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/PizzaPointDataSet.xsd -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/PizzaPointDataSet1.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet1.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/PizzaPointDataSet1.xsd -------------------------------------------------------------------------------- /PizzaPoint/PizzaPointDataSet1.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/Prices.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Prices.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Prices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Prices.cs -------------------------------------------------------------------------------- /PizzaPoint/Prices.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Prices.resx -------------------------------------------------------------------------------- /PizzaPoint/Product.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Product.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Product.cs -------------------------------------------------------------------------------- /PizzaPoint/Product.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Product.resx -------------------------------------------------------------------------------- /PizzaPoint/Products.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Products.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Products.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Products.xsc -------------------------------------------------------------------------------- /PizzaPoint/Products.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Products.xsd -------------------------------------------------------------------------------- /PizzaPoint/Products.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Program.cs -------------------------------------------------------------------------------- /PizzaPoint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Bill.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Bill.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/BillDetails.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/BillDetails.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/EmployeeRecord.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/EmployeeRecord.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/GetProductList_Result.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/GetProductList_Result.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Inventory.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Inventory.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Order.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Order.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Orders.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Orders.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/OrdersDetails.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/OrdersDetails.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.ProductsTableAdapter.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.ProductsTableAdapter.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.TableAdapterManager+UpdateOrderOption.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.TableAdapterManager+UpdateOrderOption.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.TableAdapterManager.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/PizzaPoint.ProductsTableAdapters.TableAdapterManager.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Product.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Product.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/DataSources/Users.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/DataSources/Users.datasource -------------------------------------------------------------------------------- /PizzaPoint/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/Resources.resx -------------------------------------------------------------------------------- /PizzaPoint/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Properties/Settings.settings -------------------------------------------------------------------------------- /PizzaPoint/Resources/pizzapoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Resources/pizzapoint.jpg -------------------------------------------------------------------------------- /PizzaPoint/Sales.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Sales.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Sales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Sales.cs -------------------------------------------------------------------------------- /PizzaPoint/Sales.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Sales.resx -------------------------------------------------------------------------------- /PizzaPoint/SplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/SplashScreen.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/SplashScreen.cs -------------------------------------------------------------------------------- /PizzaPoint/SplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/SplashScreen.resx -------------------------------------------------------------------------------- /PizzaPoint/Users.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Users.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Users.cs -------------------------------------------------------------------------------- /PizzaPoint/Users.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/Users.resx -------------------------------------------------------------------------------- /PizzaPoint/UsersDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/UsersDataSet.Designer.cs -------------------------------------------------------------------------------- /PizzaPoint/UsersDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/UsersDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/UsersDataSet.xsd -------------------------------------------------------------------------------- /PizzaPoint/UsersDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PizzaPoint/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/packages.config -------------------------------------------------------------------------------- /PizzaPoint/rptOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/rptOrders.cs -------------------------------------------------------------------------------- /PizzaPoint/rptOrders.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/PizzaPoint/rptOrders.rpt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashirafzal/PizzaPoint_RestaurentManagementSystem/HEAD/README.md --------------------------------------------------------------------------------