/// <summary>
 ///     Constructs the internal delete dialog.
 /// </summary>
 /// <param name="config">The dialog configuration.</param>
 protected virtual AppCompatDialogFragment ConstructDeleteDialog(IDeleteConfig config)
 {
     return(new DeleteAppCompatDialogFragment(config));
 }
 /// <summary>
 ///     Presents a delete dialog based on the provided configuration.
 /// </summary>
 /// <param name="config">The dialog configuration.</param>
 protected override IDisposable PresentDelete(IDeleteConfig config)
 {
     return(ShowDialog(ConstructDeleteDialog(config), config));
 }