diff --git a/GMCabsDriverAssistantSolution/ViewModels/CancelledBookingViewModel.cs b/GMCabsDriverAssistantSolution/ViewModels/CancelledBookingViewModel.cs new file mode 100644 index 0000000..8191285 --- /dev/null +++ b/GMCabsDriverAssistantSolution/ViewModels/CancelledBookingViewModel.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace GMCabsDriverAssistantSolution.ViewModels +{ + class CancelledBookingViewModel : BaseViewModel + { + #region Fields + public string pickUpAddress = ""; + public string dropUpAddress = ""; + #endregion + + #region Properties + public string PickUpAddress + { + get => pickUpAddress; + set + { + SetProperty(ref pickUpAddress, value); + } + } + public string DropUpAddress + { + get => dropUpAddress; + set + { + SetProperty(ref dropUpAddress, value); + } + } + #endregion + + #region Constructor + public CancelledBookingViewModel() + { + Title = "Booking Cancelled"; + } + #endregion + + #region Methods + #endregion + } +} diff --git a/GMCabsDriverAssistantSolution/Views/CancelledBookingPage.xaml b/GMCabsDriverAssistantSolution/Views/CancelledBookingPage.xaml new file mode 100644 index 0000000..5062581 --- /dev/null +++ b/GMCabsDriverAssistantSolution/Views/CancelledBookingPage.xaml @@ -0,0 +1,53 @@ + + + + +