PWA Fundvelo der Caritas.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728
  1. using MatBlazor;
  2. namespace cwebplusApp.Shared.Services {
  3. public class Toaster {
  4. private readonly IMatToaster matToaster;
  5. public Toaster(IMatToaster toaster) {
  6. this.matToaster = toaster;
  7. }
  8. public void ShowInfo(string title, string message, string icon = "") {
  9. matToaster.Add(message, MatBlazor.MatToastType.Info, title, icon);
  10. }
  11. public void ShowWarning(string title, string message, string icon = "") {
  12. matToaster.Add(message, MatBlazor.MatToastType.Warning, title, icon);
  13. }
  14. public void ShowError(string title, string message, string icon = "") {
  15. matToaster.Add(message, MatBlazor.MatToastType.Danger, title, icon);
  16. }
  17. }
  18. }