Пример #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);
     }
 }
Пример #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);
     }
 }
Пример #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);
     }
 }
Пример #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);
     }
 }
Пример #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);
     }
 }
Пример #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);
     }
 }