Esempio n. 1
0
        private static void TestDataRead()
        {
            var a = new NotifyDataModel();
            var b = a.GetNotifyData();

            var c = new NotifyConfigModel();
            var d = c.GetMemberNotifyConfig();
        }
Esempio n. 2
0
        /// <summary>
        /// Save message into TempData
        /// </summary>
        /// <param name="type">Notification type</param>
        /// <param name="message">Message</param>
        /// <param name="encode">A value indicating whether the message should not be encoded</param>
        protected virtual void PrepareTempData(ENotifyType type, string message, bool encode = true)
        {
            var notificationMessages = new NotifyDataModel
            {
                Status      = type,
                Message     = message,
                HtmlEncoded = encode
            };

            TempData["Notifications"] = JsonConvert.SerializeObject(notificationMessages);
        }