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.
 

27 lines
645 B

using GMCabsDriverAssistantSolution.ViewModels;
namespace GMCabsDriverAssistantSolution.Views;
public partial class VoucherScanHistory : ContentPage
{
#region Fields
private readonly VoucherScanHistoryViewModel _viewModel;
#endregion
#region Properties
#endregion
#region Constructor
public VoucherScanHistory()
{
InitializeComponent();
BindingContext = _viewModel = new VoucherScanHistoryViewModel();
}
#endregion
public void OnDateSelected(object sender, DateChangedEventArgs args)
{
_viewModel.OnDateSelected(sender, args);
}
#region Methods
#endregion
}