Пример #1
0
        public static ActionResult NotFound(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.NOTFOUND(message));
        }
Пример #2
0
        public static ActionResult OPTION(string message, object data, int selected = -1)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data, selected));
        }
Пример #3
0
        public static ActionResult OPTION(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data));
        }
Пример #4
0
        public static ActionResult Invalid(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.INVALID(message));
        }
Пример #5
0
        public static ActionResult SUCCESS(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.SUCCESS(message));
        }
Пример #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));
        }
Пример #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));
        }
Пример #8
0
        public static ActionResult Data(string message = "", object data = null)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataListModel(message: message, data: data));
        }
Пример #9
0
        public static ActionResult Data(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataJson(message, data));
        }
Пример #10
0
        public static ActionResult DownLoadFile(string message, string path)
        {
            InternalNotifization notifization = new InternalNotifization();

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