public static ActionResult NotFound(string message) { InternalNotifization notifization = new InternalNotifization(); return(notifization.NOTFOUND(message)); }
public static ActionResult OPTION(string message, object data, int selected = -1) { InternalNotifization notifization = new InternalNotifization(); return(notifization.OPTION(message, data, selected)); }
public static ActionResult OPTION(string message, string data) { InternalNotifization notifization = new InternalNotifization(); return(notifization.OPTION(message, data)); }
public static ActionResult Invalid(string message) { InternalNotifization notifization = new InternalNotifization(); return(notifization.INVALID(message)); }
public static ActionResult SUCCESS(string message) { InternalNotifization notifization = new InternalNotifization(); return(notifization.SUCCESS(message)); }
//public static ActionResult GetList(string message, object data, object role, object paging) //{ // InternalNotifization notifization = new InternalNotifization(); // return notifization.DataListModel(message: message, data: data, role: role, paging: paging); //} public static ActionResult ERROR(string message) { InternalNotifization notifization = new InternalNotifization(); return(notifization.ERROR(message)); }
public static ActionResult GetList(string message, object data, object paging) { InternalNotifization notifization = new InternalNotifization(); return(notifization.DataListModel(message: message, data: data, paging: paging)); }
public static ActionResult Data(string message = "", object data = null) { InternalNotifization notifization = new InternalNotifization(); return(notifization.DataListModel(message: message, data: data)); }
public static ActionResult Data(string message, string data) { InternalNotifization notifization = new InternalNotifization(); return(notifization.DataJson(message, data)); }
public static ActionResult DownLoadFile(string message, string path) { InternalNotifization notifization = new InternalNotifization(); return(notifization.DownloadFile(message, path)); }