├── .gitattributes ├── .gitignore ├── sample_4_3.sln └── sample_4_3 ├── CustomerList.Designer.cs ├── CustomerList.cs ├── CustomerList.resx ├── Dashboard.Designer.cs ├── Dashboard.cs ├── Dashboard.resx ├── DashboardControls ├── EventsCurrentYear.Designer.cs ├── EventsCurrentYear.cs ├── EventsCurrentYear.resx ├── Placeholder.cs ├── Placeholder.designer.cs ├── Placeholder.resx ├── RoomBookingsCurrentYear.Designer.cs ├── RoomBookingsCurrentYear.cs ├── RoomBookingsCurrentYear.resx ├── VenueDetails.Designer.cs ├── VenueDetails.cs ├── VenueDetails.resx ├── Venues.Designer.cs ├── Venues.cs └── Venues.resx ├── EventView.Designer.cs ├── EventView.cs ├── EventView.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PivotOverview.Designer.cs ├── PivotOverview.cs ├── PivotOverview.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── licenses.licx ├── Resources ├── customers.svg ├── dashboard.svg ├── discardchanges.svg ├── event.svg ├── pivotoverview.svg ├── printexport.svg ├── report.svg ├── roombooking-alt.svg ├── savechanges.svg └── venue.svg ├── RoomBookingView.Designer.cs ├── RoomBookingView.cs ├── RoomBookingView.resx ├── TransactionalChangeHandler.cs ├── app.config ├── packages.config └── sample_4_3.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/.gitignore -------------------------------------------------------------------------------- /sample_4_3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3.sln -------------------------------------------------------------------------------- /sample_4_3/CustomerList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/CustomerList.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/CustomerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/CustomerList.cs -------------------------------------------------------------------------------- /sample_4_3/CustomerList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/CustomerList.resx -------------------------------------------------------------------------------- /sample_4_3/Dashboard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Dashboard.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Dashboard.cs -------------------------------------------------------------------------------- /sample_4_3/Dashboard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Dashboard.resx -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/EventsCurrentYear.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/EventsCurrentYear.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/EventsCurrentYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/EventsCurrentYear.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/EventsCurrentYear.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/EventsCurrentYear.resx -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Placeholder.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Placeholder.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Placeholder.designer.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Placeholder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Placeholder.resx -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/RoomBookingsCurrentYear.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/RoomBookingsCurrentYear.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/RoomBookingsCurrentYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/RoomBookingsCurrentYear.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/RoomBookingsCurrentYear.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/RoomBookingsCurrentYear.resx -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/VenueDetails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/VenueDetails.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/VenueDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/VenueDetails.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/VenueDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/VenueDetails.resx -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Venues.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Venues.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Venues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Venues.cs -------------------------------------------------------------------------------- /sample_4_3/DashboardControls/Venues.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/DashboardControls/Venues.resx -------------------------------------------------------------------------------- /sample_4_3/EventView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/EventView.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/EventView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/EventView.cs -------------------------------------------------------------------------------- /sample_4_3/EventView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/EventView.resx -------------------------------------------------------------------------------- /sample_4_3/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/MainForm.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/MainForm.cs -------------------------------------------------------------------------------- /sample_4_3/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/MainForm.resx -------------------------------------------------------------------------------- /sample_4_3/PivotOverview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/PivotOverview.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/PivotOverview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/PivotOverview.cs -------------------------------------------------------------------------------- /sample_4_3/PivotOverview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/PivotOverview.resx -------------------------------------------------------------------------------- /sample_4_3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Program.cs -------------------------------------------------------------------------------- /sample_4_3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample_4_3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Properties/Resources.resx -------------------------------------------------------------------------------- /sample_4_3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Properties/Settings.settings -------------------------------------------------------------------------------- /sample_4_3/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_4_3/Resources/customers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/customers.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/dashboard.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/discardchanges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/discardchanges.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/event.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/pivotoverview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/pivotoverview.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/printexport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/printexport.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/report.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/roombooking-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/roombooking-alt.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/savechanges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/savechanges.svg -------------------------------------------------------------------------------- /sample_4_3/Resources/venue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/Resources/venue.svg -------------------------------------------------------------------------------- /sample_4_3/RoomBookingView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/RoomBookingView.Designer.cs -------------------------------------------------------------------------------- /sample_4_3/RoomBookingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/RoomBookingView.cs -------------------------------------------------------------------------------- /sample_4_3/RoomBookingView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/RoomBookingView.resx -------------------------------------------------------------------------------- /sample_4_3/TransactionalChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/TransactionalChangeHandler.cs -------------------------------------------------------------------------------- /sample_4_3/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/app.config -------------------------------------------------------------------------------- /sample_4_3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/packages.config -------------------------------------------------------------------------------- /sample_4_3/sample_4_3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_4_3_start/HEAD/sample_4_3/sample_4_3.csproj --------------------------------------------------------------------------------