You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
645 B

  1. using GMCabsDriverAssistantSolution.ViewModels;
  2. namespace GMCabsDriverAssistantSolution.Views;
  3. public partial class VoucherScanHistory : ContentPage
  4. {
  5. #region Fields
  6. private readonly VoucherScanHistoryViewModel _viewModel;
  7. #endregion
  8. #region Properties
  9. #endregion
  10. #region Constructor
  11. public VoucherScanHistory()
  12. {
  13. InitializeComponent();
  14. BindingContext = _viewModel = new VoucherScanHistoryViewModel();
  15. }
  16. #endregion
  17. public void OnDateSelected(object sender, DateChangedEventArgs args)
  18. {
  19. _viewModel.OnDateSelected(sender, args);
  20. }
  21. #region Methods
  22. #endregion
  23. }