Esempio n. 1
0
        public static ActionResult NotFound(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.NOTFOUND(message));
        }
Esempio n. 2
0
        public static ActionResult OPTION(string message, object data, int selected = -1)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data, selected));
        }
Esempio n. 3
0
        public static ActionResult OPTION(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data));
        }
Esempio n. 4
0
        public static ActionResult Invalid(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.INVALID(message));
        }
Esempio n. 5
0
        public static ActionResult SUCCESS(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.SUCCESS(message));
        }
Esempio n. 6
0
        //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));
        }
Esempio n. 7
0
        public static ActionResult GetList(string message, object data, object paging)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataListModel(message: message, data: data, paging: paging));
        }
Esempio n. 8
0
        public static ActionResult Data(string message = "", object data = null)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataListModel(message: message, data: data));
        }
Esempio n. 9
0
        public static ActionResult Data(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataJson(message, data));
        }
Esempio n. 10
0
        public static ActionResult DownLoadFile(string message, string path)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DownloadFile(message, path));
        }