public IDialogReference Show <T>(string title, DialogParameters parameters, DialogOptions options) where T : ComponentBase { return(Show(typeof(T), title, parameters, options)); }
public IDialogReference Show(Type contentComponent, string title, DialogParameters parameters) { return(Show(contentComponent, title, parameters, new DialogOptions())); }
public IDialogReference Show <T>(string title, DialogParameters parameters) where T : ComponentBase { return(Show <T>(title, parameters, new DialogOptions())); }