Exemple #1
0
        protected virtual void OnVehicleSelection(FormSelectionArgs <VehicleRegistration> e)
        {
            var handler = VehicleSelection;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #2
0
        protected virtual void OnCustomerSelection(FormSelectionArgs <Customer> e)
        {
            var handler = CustomerSelection;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #3
0
 protected virtual void OnVehicleSelection(FormSelectionArgs<VehicleRegistration> e)
 {
     var handler = VehicleSelection;
     if (handler != null) handler(this, e);
 }
Exemple #4
0
 protected virtual void OnCustomerSelection(FormSelectionArgs<Customer> e)
 {
     var handler = CustomerSelection;
     if (handler != null) handler(this, e);
 }