using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using InABox.Mobile; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace PRS.Mobile { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class EmployeeQualificationEditDetailsView { public EmployeeQualificationEditDetailsView() { InitializeComponent(); } public override void Refresh() { } private void _number_Changed(object sender, TextChangedEventArgs e) { DoChanged("Number"); } private void _expiry_Changed(object sender, DateButtonChangedArgs args) { DoChanged("Expiry"); } private void _qualified_OnChanged(object sender, DateButtonChangedArgs args) { DoChanged("Qualified"); } } }