예제 #1
0
 public async Task <IActionResult> PostNotification([FromBody] Notification entity)
 {
     return(await _notificationHelper.Add(entity));
 }
 public async Task <IActionResult> PostExtendedLog([FromBody] ExtendedLog entity)
 {
     return(await _extendedLogHelper.Add(entity));
 }
예제 #3
0
 public async Task <IActionResult> PostEventService([FromBody] EventService entity)
 {
     return(await _serviceHelper.Add(entity));
 }
예제 #4
0
 public async Task <IActionResult> PostEventOccurrence([FromBody] EventOccurance entity)
 {
     return(await _occurrenceHelper.Add(entity));
 }
예제 #5
0
 public async Task <IActionResult> PostEventSchedule([FromBody] EventSchedule entity)
 {
     return(await _scheduleHelper.Add(entity));
 }
예제 #6
0
 public async Task <IActionResult> PostEventLocation([FromBody] EventLocation entity)
 {
     return(await _locationHelper.Add(entity));
 }
예제 #7
0
 public async Task <IActionResult> PostEvent([FromBody] Event entity)
 {
     return(await _eventHelper.Add(entity));
 }