Exemplo n.º 1
0
        public static ToastMessage AddToastMessage(this Controller controller, string title, string message, ToastType toastType = ToastType.Info)
        {
            Toastr toastr = controller.TempData["Toastr"] as Toastr;

            toastr = toastr ?? new Toastr();

            var toastMessage = toastr.AddToastMessage1(title, message, toastType);

            controller.TempData["Toastr"] = toastr;
            return(toastMessage);
        }