private void ShowEditorFragment(EmployeeType initialValue)
 {
     CustomEditorFragment fragment = new CustomEditorFragment();
     fragment.AddPropertyChangedListener(this);
     fragment.Type = initialValue;
     FragmentActivity activity = (FragmentActivity)Context;
     fragment.Show(activity.SupportFragmentManager, "customEditor");
 }
 private void ShowEditorFragment(EmployeeType initialValue)
 {
     CustomEditorFragment fragment = new CustomEditorFragment();
     fragment.AddPropertyChangedListener(this);
     fragment.Type = initialValue;
     FragmentActivity activity = (FragmentActivity)Context;
     fragment.Show(activity.SupportFragmentManager, "customEditor");
 }