protected void SetAlert(string message, Alert.Type type, bool isAutoHide)
 {
     SetAlert(new Alert(message, type, isAutoHide: isAutoHide));
 }
 public static void SetAlert <TController>(this TController controller, string message, Alert.Type type, bool isAutoHide) where TController : ControllerBase
 {
     controller.SetAlert(new Alert(message, type, isAutoHide: isAutoHide));
 }
 protected void SetAlert(string message, Alert.Type type)
 {
     SetAlert(new Alert(message, type));
 }