Beispiel #1
0
        public ActionResult Notification(itmmNotification model)
        {
            Notification a = new Notification();

            a.LaboratoryId = getLabId();
            a.What         = model.what;
            a.Whin         = model.whin;
            a.Whire        = model.whire;
            a.Who          = model.who;
            a.Time         = model.time;

            con.AddToNotifications(a);
            con.SaveChanges();
            return(RedirectToAction("Notification", "Head"));
        }
Beispiel #2
0
        public ActionResult EditNotification(itmmNotification model, int NoticeId)
        {
            var a = (from y in con.Notifications
                     where y.NotificationId == NoticeId
                     select y).FirstOrDefault();

            a.LaboratoryId = getLabId();
            a.What         = model.what;
            a.Whin         = model.whin;
            a.Whire        = model.whire;
            a.Who          = model.who;
            a.Time         = model.time;

            con.SaveChanges();
            return(RedirectToAction("Notification", "Head"));
        }
Beispiel #3
0
        public ActionResult EditNotification(int NoticeId)
        {
            if (IsStillHead())
            {
                return(RedirectToAction("Error"));
            }
            var x = (from y in con.Notifications
                     where y.NotificationId == NoticeId
                     select y).FirstOrDefault();
            itmmNotification a = new itmmNotification();

            a.what  = x.What;
            a.whin  = x.Whin;
            a.whire = x.Whire;
            a.who   = x.Who;
            a.time  = x.Time;

            return(View(a));
        }