예제 #1
0
        public static bool Create(T_Notification notification, long id)
        {
            using (ConcertFinderEntities bdd = new ConcertFinderEntities())
            {
                try
                {
                    T_User user = bdd.T_User.Where(x => x.Id == id).FirstOrDefault();
                    bdd.Attach(user);
                    notification.T_User.Add(user);

                    bdd.AddToT_Notification(notification);
                    bdd.SaveChanges();
                }
                catch (Exception)
                {
                    throw;

                }
            }
            return true;
        }
예제 #2
0
 public static bool Deny(T_Notification notif, long idEvent)
 {
     using (ConcertFinderEntities bdd = new ConcertFinderEntities())
     {
         try
         {
             T_Event myevent = bdd.T_Event.Include("T_User").Where(x => x.Id == idEvent).FirstOrDefault();
             notif.T_Event.Add(myevent);
             notif.T_User.Add(myevent.T_User);
             bdd.AddToT_Notification(notif);
             bdd.SaveChanges();
             return true;
         }
         catch (Exception)
         {
             throw;
             return false;
         }
     }
 }