public static void MessError(string title) { AlertForm alertForm = new AlertForm(); alertForm.showAlert(title, AlertForm.enmType.Error); }
public static void Warning(string title) { AlertForm alertForm = new AlertForm(); alertForm.showAlert(title, AlertForm.enmType.Warning); }
public static void MessSuccess(string msg = "Success !!!") { AlertForm alertForm = new AlertForm(); alertForm.showAlert(msg, AlertForm.enmType.Success); }
public static void MessInf(string title) { AlertForm alertForm = new AlertForm(); alertForm.showAlert(title, AlertForm.enmType.Info); }