Beispiel #1
0
        public String TestRecord(NotificationType notificationType)
        {
            if (String.IsNullOrEmpty(notificationType.SelectNotificationType))
            {
                return "you did not select any notification type";

            }
            else
            {
                return "you Select notification with id =" + notificationType.SelectNotificationType;
            }
        }
Beispiel #2
0
 public ActionResult TestRecord()
 {
     NotificationType notificationType = new NotificationType();
     return View(notificationType);
 }