├── .gitignore ├── Database └── HotelManagement.bak ├── HotelManager.sln ├── HotelManager ├── App.config ├── DAO │ ├── AccessDAO.cs │ ├── AccountDAO.cs │ ├── AccountTypeDAO.cs │ ├── BillDAO.cs │ ├── BillDetailsDAO.cs │ ├── BookRoomDAO.cs │ ├── CustomerDAO.cs │ ├── CustomerTypeDAO.cs │ ├── DataProvider.cs │ ├── ExportToExcel.cs │ ├── ParameterDAO.cs │ ├── ReceiveRoomDAO.cs │ ├── ReceiveRoomDetailsDAO.cs │ ├── ReceiveRoomInfoDAO.cs │ ├── ReportDAO.cs │ ├── RoomDAO.cs │ ├── RoomTypeDAO.cs │ ├── ServiceDAO.cs │ ├── ServiceTypeDAO.cs │ └── StatusRoomDAO.cs ├── DTO │ ├── Account.cs │ ├── AccountType.cs │ ├── Bill.cs │ ├── BillDetails.cs │ ├── BookRoom.cs │ ├── Customer.cs │ ├── CustomerType.cs │ ├── Parameter.cs │ ├── ReceiveRoom.cs │ ├── ReceiveRoomDetails.cs │ ├── ReceiveRoomInfo.cs │ ├── Room.cs │ ├── RoomType.cs │ ├── Service.cs │ ├── ServiceType.cs │ └── StatusRoom.cs ├── HotelManager.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Room.png │ ├── fAddStaff.Designer.cs │ ├── fAddStaff.cs │ └── fAddStaff.resx ├── bin │ ├── Debug │ │ ├── Bill.Png │ │ ├── Bunifu_UI_v1.52.dll │ │ ├── FlashControlV71.dll │ │ ├── HotelManager.exe.config │ │ ├── HotelManager.vshost.exe.config │ │ ├── HotelManager.vshost.exe.manifest │ │ ├── MaterialSkin.dll │ │ ├── MetroFramework.Design.dll │ │ ├── MetroFramework.Fonts.dll │ │ └── MetroFramework.dll │ └── Release │ │ ├── Bill.Png │ │ ├── Bunifu_UI_v1.52.dll │ │ ├── FlashControlV71.dll │ │ ├── HotelManager.exe.config │ │ ├── MaterialSkin.dll │ │ ├── MetroFramework.Design.dll │ │ ├── MetroFramework.Fonts.dll │ │ └── MetroFramework.dll ├── fAbout.Designer.cs ├── fAbout.cs ├── fAbout.resx ├── fAccess.Designer.cs ├── fAccess.cs ├── fAccess.resx ├── fAddCustomer.Designer.cs ├── fAddCustomer.cs ├── fAddCustomer.resx ├── fAddCustomerInfo.Designer.cs ├── fAddCustomerInfo.cs ├── fAddCustomerInfo.resx ├── fAddRoom.Designer.cs ├── fAddRoom.cs ├── fAddRoom.resx ├── fAddService.Designer.cs ├── fAddService.cs ├── fAddService.resx ├── fAddServiceType.Designer.cs ├── fAddServiceType.cs ├── fAddServiceType.resx ├── fAddStaffType.Designer.cs ├── fAddStaffType.cs ├── fAddStaffType.resx ├── fBill.Designer.cs ├── fBill.cs ├── fBill.resx ├── fBookRoom.Designer.cs ├── fBookRoom.cs ├── fBookRoom.resx ├── fBookRoomDetails.Designer.cs ├── fBookRoomDetails.cs ├── fBookRoomDetails.resx ├── fChangeRoom.Designer.cs ├── fChangeRoom.cs ├── fChangeRoom.resx ├── fCustomer.Designer.cs ├── fCustomer.cs ├── fCustomer.resx ├── fLogin.Designer.cs ├── fLogin.cs ├── fLogin.resx ├── fManagement.Designer.cs ├── fManagement.cs ├── fManagement.resx ├── fParameter.Designer.cs ├── fParameter.cs ├── fParameter.resx ├── fPrintBill.Designer.cs ├── fPrintBill.cs ├── fPrintBill.resx ├── fProfile.Designer.cs ├── fProfile.cs ├── fProfile.resx ├── fReceiveRoom.Designer.cs ├── fReceiveRoom.cs ├── fReceiveRoom.resx ├── fReceiveRoomDetails.Designer.cs ├── fReceiveRoomDetails.cs ├── fReceiveRoomDetails.resx ├── fReport.Designer.cs ├── fReport.cs ├── fReport.resx ├── fRoom.Designer.cs ├── fRoom.cs ├── fRoom.resx ├── fRoomType.Designer.cs ├── fRoomType.cs ├── fRoomType.resx ├── fService.Designer.cs ├── fService.cs ├── fService.resx ├── fServiceType.Designer.cs ├── fServiceType.cs ├── fServiceType.resx ├── fStaff.Designer.cs ├── fStaff.cs ├── fStaff.resx ├── fUseService.Designer.cs ├── fUseService.cs ├── fUseService.resx ├── hotel.ico └── packages.config ├── LICENSE ├── Phân công công việc.xlsx ├── README.md └── images ├── datphong.png ├── dichvu-thanhtoan.png ├── login.png ├── mainscreen.png ├── nhanphong.png └── nhanvien.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/.gitignore -------------------------------------------------------------------------------- /Database/HotelManagement.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/Database/HotelManagement.bak -------------------------------------------------------------------------------- /HotelManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager.sln -------------------------------------------------------------------------------- /HotelManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/App.config -------------------------------------------------------------------------------- /HotelManager/DAO/AccessDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/AccessDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/AccountDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/AccountDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/AccountTypeDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/AccountTypeDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/BillDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/BillDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/BillDetailsDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/BillDetailsDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/BookRoomDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/BookRoomDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/CustomerDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/CustomerDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/CustomerTypeDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/CustomerTypeDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/DataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/DataProvider.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ExportToExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ExportToExcel.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ParameterDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ParameterDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ReceiveRoomDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ReceiveRoomDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ReceiveRoomDetailsDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ReceiveRoomDetailsDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ReceiveRoomInfoDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ReceiveRoomInfoDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ReportDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ReportDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/RoomDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/RoomDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/RoomTypeDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/RoomTypeDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ServiceDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ServiceDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/ServiceTypeDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/ServiceTypeDAO.cs -------------------------------------------------------------------------------- /HotelManager/DAO/StatusRoomDAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DAO/StatusRoomDAO.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Account.cs -------------------------------------------------------------------------------- /HotelManager/DTO/AccountType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/AccountType.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Bill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Bill.cs -------------------------------------------------------------------------------- /HotelManager/DTO/BillDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/BillDetails.cs -------------------------------------------------------------------------------- /HotelManager/DTO/BookRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/BookRoom.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Customer.cs -------------------------------------------------------------------------------- /HotelManager/DTO/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/CustomerType.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Parameter.cs -------------------------------------------------------------------------------- /HotelManager/DTO/ReceiveRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/ReceiveRoom.cs -------------------------------------------------------------------------------- /HotelManager/DTO/ReceiveRoomDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/ReceiveRoomDetails.cs -------------------------------------------------------------------------------- /HotelManager/DTO/ReceiveRoomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/ReceiveRoomInfo.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Room.cs -------------------------------------------------------------------------------- /HotelManager/DTO/RoomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/RoomType.cs -------------------------------------------------------------------------------- /HotelManager/DTO/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/Service.cs -------------------------------------------------------------------------------- /HotelManager/DTO/ServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/ServiceType.cs -------------------------------------------------------------------------------- /HotelManager/DTO/StatusRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/DTO/StatusRoom.cs -------------------------------------------------------------------------------- /HotelManager/HotelManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/HotelManager.csproj -------------------------------------------------------------------------------- /HotelManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Program.cs -------------------------------------------------------------------------------- /HotelManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HotelManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HotelManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Properties/Resources.resx -------------------------------------------------------------------------------- /HotelManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HotelManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Properties/Settings.settings -------------------------------------------------------------------------------- /HotelManager/Resources/Room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Resources/Room.png -------------------------------------------------------------------------------- /HotelManager/Resources/fAddStaff.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Resources/fAddStaff.Designer.cs -------------------------------------------------------------------------------- /HotelManager/Resources/fAddStaff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Resources/fAddStaff.cs -------------------------------------------------------------------------------- /HotelManager/Resources/fAddStaff.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/Resources/fAddStaff.resx -------------------------------------------------------------------------------- /HotelManager/bin/Debug/Bill.Png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/Bill.Png -------------------------------------------------------------------------------- /HotelManager/bin/Debug/Bunifu_UI_v1.52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/Bunifu_UI_v1.52.dll -------------------------------------------------------------------------------- /HotelManager/bin/Debug/FlashControlV71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/FlashControlV71.dll -------------------------------------------------------------------------------- /HotelManager/bin/Debug/HotelManager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/HotelManager.exe.config -------------------------------------------------------------------------------- /HotelManager/bin/Debug/HotelManager.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/HotelManager.vshost.exe.config -------------------------------------------------------------------------------- /HotelManager/bin/Debug/HotelManager.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/HotelManager.vshost.exe.manifest -------------------------------------------------------------------------------- /HotelManager/bin/Debug/MaterialSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/MaterialSkin.dll -------------------------------------------------------------------------------- /HotelManager/bin/Debug/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/MetroFramework.Design.dll -------------------------------------------------------------------------------- /HotelManager/bin/Debug/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /HotelManager/bin/Debug/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Debug/MetroFramework.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/Bill.Png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/Bill.Png -------------------------------------------------------------------------------- /HotelManager/bin/Release/Bunifu_UI_v1.52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/Bunifu_UI_v1.52.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/FlashControlV71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/FlashControlV71.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/HotelManager.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/HotelManager.exe.config -------------------------------------------------------------------------------- /HotelManager/bin/Release/MaterialSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/MaterialSkin.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/MetroFramework.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/MetroFramework.Design.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/MetroFramework.Fonts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/MetroFramework.Fonts.dll -------------------------------------------------------------------------------- /HotelManager/bin/Release/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/bin/Release/MetroFramework.dll -------------------------------------------------------------------------------- /HotelManager/fAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAbout.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAbout.cs -------------------------------------------------------------------------------- /HotelManager/fAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAbout.resx -------------------------------------------------------------------------------- /HotelManager/fAccess.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAccess.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAccess.cs -------------------------------------------------------------------------------- /HotelManager/fAccess.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAccess.resx -------------------------------------------------------------------------------- /HotelManager/fAddCustomer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomer.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomer.cs -------------------------------------------------------------------------------- /HotelManager/fAddCustomer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomer.resx -------------------------------------------------------------------------------- /HotelManager/fAddCustomerInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomerInfo.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddCustomerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomerInfo.cs -------------------------------------------------------------------------------- /HotelManager/fAddCustomerInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddCustomerInfo.resx -------------------------------------------------------------------------------- /HotelManager/fAddRoom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddRoom.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddRoom.cs -------------------------------------------------------------------------------- /HotelManager/fAddRoom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddRoom.resx -------------------------------------------------------------------------------- /HotelManager/fAddService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddService.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddService.cs -------------------------------------------------------------------------------- /HotelManager/fAddService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddService.resx -------------------------------------------------------------------------------- /HotelManager/fAddServiceType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddServiceType.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddServiceType.cs -------------------------------------------------------------------------------- /HotelManager/fAddServiceType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddServiceType.resx -------------------------------------------------------------------------------- /HotelManager/fAddStaffType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddStaffType.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fAddStaffType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddStaffType.cs -------------------------------------------------------------------------------- /HotelManager/fAddStaffType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fAddStaffType.resx -------------------------------------------------------------------------------- /HotelManager/fBill.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBill.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fBill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBill.cs -------------------------------------------------------------------------------- /HotelManager/fBill.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBill.resx -------------------------------------------------------------------------------- /HotelManager/fBookRoom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoom.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fBookRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoom.cs -------------------------------------------------------------------------------- /HotelManager/fBookRoom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoom.resx -------------------------------------------------------------------------------- /HotelManager/fBookRoomDetails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoomDetails.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fBookRoomDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoomDetails.cs -------------------------------------------------------------------------------- /HotelManager/fBookRoomDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fBookRoomDetails.resx -------------------------------------------------------------------------------- /HotelManager/fChangeRoom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fChangeRoom.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fChangeRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fChangeRoom.cs -------------------------------------------------------------------------------- /HotelManager/fChangeRoom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fChangeRoom.resx -------------------------------------------------------------------------------- /HotelManager/fCustomer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fCustomer.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fCustomer.cs -------------------------------------------------------------------------------- /HotelManager/fCustomer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fCustomer.resx -------------------------------------------------------------------------------- /HotelManager/fLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fLogin.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fLogin.cs -------------------------------------------------------------------------------- /HotelManager/fLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fLogin.resx -------------------------------------------------------------------------------- /HotelManager/fManagement.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fManagement.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fManagement.cs -------------------------------------------------------------------------------- /HotelManager/fManagement.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fManagement.resx -------------------------------------------------------------------------------- /HotelManager/fParameter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fParameter.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fParameter.cs -------------------------------------------------------------------------------- /HotelManager/fParameter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fParameter.resx -------------------------------------------------------------------------------- /HotelManager/fPrintBill.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fPrintBill.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fPrintBill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fPrintBill.cs -------------------------------------------------------------------------------- /HotelManager/fPrintBill.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fPrintBill.resx -------------------------------------------------------------------------------- /HotelManager/fProfile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fProfile.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fProfile.cs -------------------------------------------------------------------------------- /HotelManager/fProfile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fProfile.resx -------------------------------------------------------------------------------- /HotelManager/fReceiveRoom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoom.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fReceiveRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoom.cs -------------------------------------------------------------------------------- /HotelManager/fReceiveRoom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoom.resx -------------------------------------------------------------------------------- /HotelManager/fReceiveRoomDetails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoomDetails.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fReceiveRoomDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoomDetails.cs -------------------------------------------------------------------------------- /HotelManager/fReceiveRoomDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReceiveRoomDetails.resx -------------------------------------------------------------------------------- /HotelManager/fReport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReport.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReport.cs -------------------------------------------------------------------------------- /HotelManager/fReport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fReport.resx -------------------------------------------------------------------------------- /HotelManager/fRoom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoom.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoom.cs -------------------------------------------------------------------------------- /HotelManager/fRoom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoom.resx -------------------------------------------------------------------------------- /HotelManager/fRoomType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoomType.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fRoomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoomType.cs -------------------------------------------------------------------------------- /HotelManager/fRoomType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fRoomType.resx -------------------------------------------------------------------------------- /HotelManager/fService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fService.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fService.cs -------------------------------------------------------------------------------- /HotelManager/fService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fService.resx -------------------------------------------------------------------------------- /HotelManager/fServiceType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fServiceType.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fServiceType.cs -------------------------------------------------------------------------------- /HotelManager/fServiceType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fServiceType.resx -------------------------------------------------------------------------------- /HotelManager/fStaff.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fStaff.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fStaff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fStaff.cs -------------------------------------------------------------------------------- /HotelManager/fStaff.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fStaff.resx -------------------------------------------------------------------------------- /HotelManager/fUseService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fUseService.Designer.cs -------------------------------------------------------------------------------- /HotelManager/fUseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fUseService.cs -------------------------------------------------------------------------------- /HotelManager/fUseService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/fUseService.resx -------------------------------------------------------------------------------- /HotelManager/hotel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/hotel.ico -------------------------------------------------------------------------------- /HotelManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/HotelManager/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/LICENSE -------------------------------------------------------------------------------- /Phân công công việc.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/Phân công công việc.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/README.md -------------------------------------------------------------------------------- /images/datphong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/datphong.png -------------------------------------------------------------------------------- /images/dichvu-thanhtoan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/dichvu-thanhtoan.png -------------------------------------------------------------------------------- /images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/login.png -------------------------------------------------------------------------------- /images/mainscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/mainscreen.png -------------------------------------------------------------------------------- /images/nhanphong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/nhanphong.png -------------------------------------------------------------------------------- /images/nhanvien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThuctapnhomK51/QLKS/HEAD/images/nhanvien.png --------------------------------------------------------------------------------