コード例 #1
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult NotFound(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.NOTFOUND(message));
        }
コード例 #2
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult OPTION(string message, object data, int selected = -1)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data, selected));
        }
コード例 #3
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult OPTION(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.OPTION(message, data));
        }
コード例 #4
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult Invalid(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.INVALID(message));
        }
コード例 #5
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult SUCCESS(string message)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.SUCCESS(message));
        }
コード例 #6
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        //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
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        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
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult Data(string message = "", object data = null)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataListModel(message: message, data: data));
        }
コード例 #9
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult Data(string message, string data)
        {
            InternalNotifization notifization = new InternalNotifization();

            return(notifization.DataJson(message, data));
        }
コード例 #10
0
ファイル: Notifization.cs プロジェクト: boss0486/AIRBooking
        public static ActionResult DownLoadFile(string message, string path)
        {
            InternalNotifization notifization = new InternalNotifization();

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