├── .gitignore ├── README.md ├── db ├── 001_create_database.sql ├── 002_create_vehicles.sql ├── 003_create_persons.sql ├── 004_create_roles.sql ├── 005_create_user_accounts.sql ├── 006_create_requests.sql ├── 007_create_passengers.sql ├── 008_create_trips.sql ├── create_tables.sql └── drop_tables.sql ├── doc ├── VMS-Process.png ├── VMS-logo.png ├── VMS-screen-shots │ ├── VMS-01-Main-page.png │ ├── VMS-02-Users.png │ ├── VMS-03-User-info.png │ ├── VMS-04-Vehicles.png │ ├── VMS-05-Vehicle-info.png │ ├── VMS-06-Requests.png │ ├── VMS-07-Request-info.png │ ├── VMS-08-Trips.png │ └── VMS-09-Trip-info.png ├── VMS_UML_class_diagram.png └── VMS_logo.png ├── vms.db ├── Mapping │ ├── Person.hbm.xml │ ├── Request.hbm.xml │ ├── Role.hbm.xml │ ├── Trip.hbm.xml │ ├── UserAccount.hbm.xml │ └── Vehicle.hbm.xml ├── Properties │ └── AssemblyInfo.cs ├── Services │ └── PersistenceService.cs ├── packages.config └── vms.db.csproj ├── vms.model ├── Address.cpp ├── Address.h ├── Administrator.cpp ├── Administrator.h ├── CargoCar.cpp ├── CargoCar.h ├── Employee.cpp ├── Employee.h ├── GarageAttendant.cpp ├── GarageAttendant.h ├── Manager.cpp ├── Manager.h ├── OwnedVehicle.cpp ├── OwnedVehicle.h ├── PassengerCar.cpp ├── PassengerCar.h ├── PersistentEntity.h ├── Person.cpp ├── Person.h ├── Request.cpp ├── Request.h ├── Role.h ├── Stdafx.h ├── Trip.cpp ├── Trip.h ├── UserAccount.cpp ├── UserAccount.h ├── UtilityCar.cpp ├── UtilityCar.h ├── Vehicle.cpp ├── Vehicle.h ├── vms.model.vcxproj └── vms.model.vcxproj.filters ├── vms.sln └── vms.view ├── App.config ├── App.xaml ├── App.xaml.cs ├── Components ├── Border.xaml ├── Brushes.xaml ├── Button.xaml ├── ComboBox.xaml ├── CommonStyles.xaml ├── DataGrid.xaml ├── ErrorTemplate.xaml ├── GroupBox.xaml ├── ScrollBar.xaml ├── TabControl.xaml ├── TabItem.xaml ├── TextBlock.xaml ├── TextBox.xaml ├── TextBoxExtensions.cs └── ToolTip.xaml ├── Controllers ├── DelegateCommand.cs ├── LandingController.cs ├── ListController.cs ├── RequestsController.cs ├── TripsController.cs ├── UsersController.cs └── VehiclesController.cs ├── Fonts ├── calibri.ttf ├── calibrib.ttf ├── calibrii.ttf └── calibriz.ttf ├── Helpers ├── AppServices.cs └── ClientSecurityContext.cs ├── Properties └── AssemblyInfo.cs ├── Resources ├── CarKey.png ├── CarKey128.png ├── VMS_logo.ico ├── VMS_logo.png ├── background.jpg ├── background_left.png ├── car128.png ├── reports128.png ├── trips128.png └── users128.png ├── Shell.xaml ├── Shell.xaml.cs ├── Utils ├── DateBehavior.cs ├── DateMask.cs ├── EnumHelper.cs ├── MaskElement.cs └── TextBoxMask.cs ├── ViewModels ├── IPageNavigator.cs ├── ItemViewModel.cs ├── NavigationManager.cs ├── RequestViewModel.cs ├── RoleViewModel.cs ├── ShellViewModel.cs ├── TripViewModel.cs ├── UserViewModel.cs ├── VehicleViewModel.cs └── ViewModelBase.cs ├── Views ├── LoginView.xaml ├── LoginView.xaml.cs ├── NewPassengerView.xaml ├── NewPassengerView.xaml.cs ├── Pages │ ├── LandingView.xaml │ ├── LandingView.xaml.cs │ ├── RequestsView.xaml │ ├── RequestsView.xaml.cs │ ├── TripsView.xaml │ ├── TripsView.xaml.cs │ ├── UsersView.xaml │ ├── UsersView.xaml.cs │ ├── VehiclesView.xaml │ └── VehiclesView.xaml.cs ├── RequestView.xaml ├── RequestView.xaml.cs ├── SignInView.xaml ├── SignInView.xaml.cs ├── TripView.xaml ├── TripView.xaml.cs ├── UserInfoView.xaml ├── UserInfoView.xaml.cs ├── VehiclePropertiesView.xaml └── VehiclePropertiesView.xaml.cs └── vms.view.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /db/001_create_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/001_create_database.sql -------------------------------------------------------------------------------- /db/002_create_vehicles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/002_create_vehicles.sql -------------------------------------------------------------------------------- /db/003_create_persons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/003_create_persons.sql -------------------------------------------------------------------------------- /db/004_create_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/004_create_roles.sql -------------------------------------------------------------------------------- /db/005_create_user_accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/005_create_user_accounts.sql -------------------------------------------------------------------------------- /db/006_create_requests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/006_create_requests.sql -------------------------------------------------------------------------------- /db/007_create_passengers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/007_create_passengers.sql -------------------------------------------------------------------------------- /db/008_create_trips.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/008_create_trips.sql -------------------------------------------------------------------------------- /db/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/create_tables.sql -------------------------------------------------------------------------------- /db/drop_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/db/drop_tables.sql -------------------------------------------------------------------------------- /doc/VMS-Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-Process.png -------------------------------------------------------------------------------- /doc/VMS-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-logo.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-01-Main-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-01-Main-page.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-02-Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-02-Users.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-03-User-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-03-User-info.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-04-Vehicles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-04-Vehicles.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-05-Vehicle-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-05-Vehicle-info.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-06-Requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-06-Requests.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-07-Request-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-07-Request-info.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-08-Trips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-08-Trips.png -------------------------------------------------------------------------------- /doc/VMS-screen-shots/VMS-09-Trip-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS-screen-shots/VMS-09-Trip-info.png -------------------------------------------------------------------------------- /doc/VMS_UML_class_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS_UML_class_diagram.png -------------------------------------------------------------------------------- /doc/VMS_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/doc/VMS_logo.png -------------------------------------------------------------------------------- /vms.db/Mapping/Person.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/Person.hbm.xml -------------------------------------------------------------------------------- /vms.db/Mapping/Request.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/Request.hbm.xml -------------------------------------------------------------------------------- /vms.db/Mapping/Role.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/Role.hbm.xml -------------------------------------------------------------------------------- /vms.db/Mapping/Trip.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/Trip.hbm.xml -------------------------------------------------------------------------------- /vms.db/Mapping/UserAccount.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/UserAccount.hbm.xml -------------------------------------------------------------------------------- /vms.db/Mapping/Vehicle.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Mapping/Vehicle.hbm.xml -------------------------------------------------------------------------------- /vms.db/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /vms.db/Services/PersistenceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/Services/PersistenceService.cs -------------------------------------------------------------------------------- /vms.db/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/packages.config -------------------------------------------------------------------------------- /vms.db/vms.db.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.db/vms.db.csproj -------------------------------------------------------------------------------- /vms.model/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Address.cpp -------------------------------------------------------------------------------- /vms.model/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Address.h -------------------------------------------------------------------------------- /vms.model/Administrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Administrator.cpp -------------------------------------------------------------------------------- /vms.model/Administrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Administrator.h -------------------------------------------------------------------------------- /vms.model/CargoCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/CargoCar.cpp -------------------------------------------------------------------------------- /vms.model/CargoCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/CargoCar.h -------------------------------------------------------------------------------- /vms.model/Employee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Employee.cpp -------------------------------------------------------------------------------- /vms.model/Employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Employee.h -------------------------------------------------------------------------------- /vms.model/GarageAttendant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/GarageAttendant.cpp -------------------------------------------------------------------------------- /vms.model/GarageAttendant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/GarageAttendant.h -------------------------------------------------------------------------------- /vms.model/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Manager.cpp -------------------------------------------------------------------------------- /vms.model/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Manager.h -------------------------------------------------------------------------------- /vms.model/OwnedVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/OwnedVehicle.cpp -------------------------------------------------------------------------------- /vms.model/OwnedVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/OwnedVehicle.h -------------------------------------------------------------------------------- /vms.model/PassengerCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/PassengerCar.cpp -------------------------------------------------------------------------------- /vms.model/PassengerCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/PassengerCar.h -------------------------------------------------------------------------------- /vms.model/PersistentEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/PersistentEntity.h -------------------------------------------------------------------------------- /vms.model/Person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Person.cpp -------------------------------------------------------------------------------- /vms.model/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Person.h -------------------------------------------------------------------------------- /vms.model/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Request.cpp -------------------------------------------------------------------------------- /vms.model/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Request.h -------------------------------------------------------------------------------- /vms.model/Role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Role.h -------------------------------------------------------------------------------- /vms.model/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Stdafx.h -------------------------------------------------------------------------------- /vms.model/Trip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Trip.cpp -------------------------------------------------------------------------------- /vms.model/Trip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Trip.h -------------------------------------------------------------------------------- /vms.model/UserAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/UserAccount.cpp -------------------------------------------------------------------------------- /vms.model/UserAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/UserAccount.h -------------------------------------------------------------------------------- /vms.model/UtilityCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/UtilityCar.cpp -------------------------------------------------------------------------------- /vms.model/UtilityCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/UtilityCar.h -------------------------------------------------------------------------------- /vms.model/Vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Vehicle.cpp -------------------------------------------------------------------------------- /vms.model/Vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/Vehicle.h -------------------------------------------------------------------------------- /vms.model/vms.model.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/vms.model.vcxproj -------------------------------------------------------------------------------- /vms.model/vms.model.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.model/vms.model.vcxproj.filters -------------------------------------------------------------------------------- /vms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.sln -------------------------------------------------------------------------------- /vms.view/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/App.config -------------------------------------------------------------------------------- /vms.view/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/App.xaml -------------------------------------------------------------------------------- /vms.view/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/App.xaml.cs -------------------------------------------------------------------------------- /vms.view/Components/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/Border.xaml -------------------------------------------------------------------------------- /vms.view/Components/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/Brushes.xaml -------------------------------------------------------------------------------- /vms.view/Components/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/Button.xaml -------------------------------------------------------------------------------- /vms.view/Components/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/ComboBox.xaml -------------------------------------------------------------------------------- /vms.view/Components/CommonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/CommonStyles.xaml -------------------------------------------------------------------------------- /vms.view/Components/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/DataGrid.xaml -------------------------------------------------------------------------------- /vms.view/Components/ErrorTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/ErrorTemplate.xaml -------------------------------------------------------------------------------- /vms.view/Components/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/GroupBox.xaml -------------------------------------------------------------------------------- /vms.view/Components/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/ScrollBar.xaml -------------------------------------------------------------------------------- /vms.view/Components/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/TabControl.xaml -------------------------------------------------------------------------------- /vms.view/Components/TabItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/TabItem.xaml -------------------------------------------------------------------------------- /vms.view/Components/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/TextBlock.xaml -------------------------------------------------------------------------------- /vms.view/Components/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/TextBox.xaml -------------------------------------------------------------------------------- /vms.view/Components/TextBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/TextBoxExtensions.cs -------------------------------------------------------------------------------- /vms.view/Components/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Components/ToolTip.xaml -------------------------------------------------------------------------------- /vms.view/Controllers/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/DelegateCommand.cs -------------------------------------------------------------------------------- /vms.view/Controllers/LandingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/LandingController.cs -------------------------------------------------------------------------------- /vms.view/Controllers/ListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/ListController.cs -------------------------------------------------------------------------------- /vms.view/Controllers/RequestsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/RequestsController.cs -------------------------------------------------------------------------------- /vms.view/Controllers/TripsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/TripsController.cs -------------------------------------------------------------------------------- /vms.view/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/UsersController.cs -------------------------------------------------------------------------------- /vms.view/Controllers/VehiclesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Controllers/VehiclesController.cs -------------------------------------------------------------------------------- /vms.view/Fonts/calibri.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Fonts/calibri.ttf -------------------------------------------------------------------------------- /vms.view/Fonts/calibrib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Fonts/calibrib.ttf -------------------------------------------------------------------------------- /vms.view/Fonts/calibrii.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Fonts/calibrii.ttf -------------------------------------------------------------------------------- /vms.view/Fonts/calibriz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Fonts/calibriz.ttf -------------------------------------------------------------------------------- /vms.view/Helpers/AppServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Helpers/AppServices.cs -------------------------------------------------------------------------------- /vms.view/Helpers/ClientSecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Helpers/ClientSecurityContext.cs -------------------------------------------------------------------------------- /vms.view/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /vms.view/Resources/CarKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/CarKey.png -------------------------------------------------------------------------------- /vms.view/Resources/CarKey128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/CarKey128.png -------------------------------------------------------------------------------- /vms.view/Resources/VMS_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/VMS_logo.ico -------------------------------------------------------------------------------- /vms.view/Resources/VMS_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/VMS_logo.png -------------------------------------------------------------------------------- /vms.view/Resources/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/background.jpg -------------------------------------------------------------------------------- /vms.view/Resources/background_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/background_left.png -------------------------------------------------------------------------------- /vms.view/Resources/car128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/car128.png -------------------------------------------------------------------------------- /vms.view/Resources/reports128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/reports128.png -------------------------------------------------------------------------------- /vms.view/Resources/trips128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/trips128.png -------------------------------------------------------------------------------- /vms.view/Resources/users128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Resources/users128.png -------------------------------------------------------------------------------- /vms.view/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Shell.xaml -------------------------------------------------------------------------------- /vms.view/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Shell.xaml.cs -------------------------------------------------------------------------------- /vms.view/Utils/DateBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Utils/DateBehavior.cs -------------------------------------------------------------------------------- /vms.view/Utils/DateMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Utils/DateMask.cs -------------------------------------------------------------------------------- /vms.view/Utils/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Utils/EnumHelper.cs -------------------------------------------------------------------------------- /vms.view/Utils/MaskElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Utils/MaskElement.cs -------------------------------------------------------------------------------- /vms.view/Utils/TextBoxMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Utils/TextBoxMask.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/IPageNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/IPageNavigator.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/NavigationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/NavigationManager.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/RequestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/RequestViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/RoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/RoleViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/TripViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/TripViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/VehicleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/VehicleViewModel.cs -------------------------------------------------------------------------------- /vms.view/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /vms.view/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/LoginView.xaml -------------------------------------------------------------------------------- /vms.view/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/NewPassengerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/NewPassengerView.xaml -------------------------------------------------------------------------------- /vms.view/Views/NewPassengerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/NewPassengerView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/Pages/LandingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/LandingView.xaml -------------------------------------------------------------------------------- /vms.view/Views/Pages/LandingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/LandingView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/Pages/RequestsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/RequestsView.xaml -------------------------------------------------------------------------------- /vms.view/Views/Pages/RequestsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/RequestsView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/Pages/TripsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/TripsView.xaml -------------------------------------------------------------------------------- /vms.view/Views/Pages/TripsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/TripsView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/Pages/UsersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/UsersView.xaml -------------------------------------------------------------------------------- /vms.view/Views/Pages/UsersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/UsersView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/Pages/VehiclesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/VehiclesView.xaml -------------------------------------------------------------------------------- /vms.view/Views/Pages/VehiclesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/Pages/VehiclesView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/RequestView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/RequestView.xaml -------------------------------------------------------------------------------- /vms.view/Views/RequestView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/RequestView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/SignInView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/SignInView.xaml -------------------------------------------------------------------------------- /vms.view/Views/SignInView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/SignInView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/TripView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/TripView.xaml -------------------------------------------------------------------------------- /vms.view/Views/TripView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/TripView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/UserInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/UserInfoView.xaml -------------------------------------------------------------------------------- /vms.view/Views/UserInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/UserInfoView.xaml.cs -------------------------------------------------------------------------------- /vms.view/Views/VehiclePropertiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/VehiclePropertiesView.xaml -------------------------------------------------------------------------------- /vms.view/Views/VehiclePropertiesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/Views/VehiclePropertiesView.xaml.cs -------------------------------------------------------------------------------- /vms.view/vms.view.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemulare/Vehicle-Management-System/HEAD/vms.view/vms.view.csproj --------------------------------------------------------------------------------