public System.Threading.Tasks.Task <string> UpdateEventAsync(ApplicationService.DTOs.EventDTO eventDto)
 {
     return(base.Channel.UpdateEventAsync(eventDto));
 }
 public System.Threading.Tasks.Task <string> PostEventAsync(ApplicationService.DTOs.EventDTO friendDto)
 {
     return(base.Channel.PostEventAsync(friendDto));
 }
 public string UpdateEvent(ApplicationService.DTOs.EventDTO eventDto)
 {
     return(base.Channel.UpdateEvent(eventDto));
 }
 public string PostEvent(ApplicationService.DTOs.EventDTO friendDto)
 {
     return(base.Channel.PostEvent(friendDto));
 }