Ejemplo n.º 1
0
        public static bool?ShowQuestionWithCancel(this IMessageBoxService service, string message, string title = "Question")
        {
            if (service == null)
            {
                throw new ArgumentNullException(nameof(service));
            }

            return(service.ShowQuestionWithCancel(null, message, title));
        }