Exemple #1
0
        /// <summary>
        /// Sms sending
        /// </summary>
        /// <param name="model">Model of details</param>
        /// <returns>Refresh page</returns>
        public ActionResult SendSmsNotification(Product_DetailModel model)
        {
            var notification = new Notifications_Sender(Data);

            notification.ProductNotificationSms(model.NotificationMobileNumber, _product.GetModelId());
            return(RedirectToAction("ShowDetails"));
        }