public async Task <bool> Add(TipoEmpaqueView mensaje)
        {
            var metroWindow = (Application.Current.MainWindow as MetroWindow);
            var resultado   = await mensaje.ShowMessageAsync("Agregando", "Desea Agregar un nuevo Empaque",
                                                             MessageDialogStyle.AffirmativeAndNegative, new MetroDialogSettings
            {
                AffirmativeButtonText = "Si",
                NegativeButtonText    = "No",
                AnimateShow           = true,
                AnimateHide           = false
            });

            if (resultado == MessageDialogResult.Affirmative)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }