Esempio n. 1
0
 public static void UpdateEventIsDelete(Guid EventId, bool IsDelete)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, null, null, null, null, null, null, IsDelete);
     }
 }
Esempio n. 2
0
 public static void UpdateEventPublic(Guid EventId, bool isPublic)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, null, null, null, null, null, isPublic, null);
     }
 }
Esempio n. 3
0
 public static void UpdateEventVenueByVenueId(Guid EventId, Guid VenueId)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, null, null, null, null, VenueId, null, null);
     }
 }
Esempio n. 4
0
 public static void UpdateEventEndDate(Guid EventId, DateTime EndDate)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, null, null, null, EndDate, null, null, null);
     }
 }
Esempio n. 5
0
 public static void UpdateEventImage(Guid EventId, string Image)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, null, Image, null, null, null, null, null);
     }
 }
Esempio n. 6
0
 public static void UpdateEventDescription(Guid EventId, string Description)
 {
     using (GatheringsEntities _db = new GatheringsEntities())
     {
         _db.ef_UpdateEvent(EventId, null, Description, null, null, null, null, null, null);
     }
 }