public async Task<BooleanResponse> SaveNotificationEvent(EventEntity entity)
 {
     var notificationEventManagement = new EventManagement();
     var response = await notificationEventManagement.SaveNotificationEvent(entity);
     return response;
 }
 public BooleanResponse SaveEventCategories(List<EventCategory> eventCategories)
 {
     var notificationEventManagement = new EventManagement();
     var response = notificationEventManagement.SaveEventCategories(eventCategories);
     return response;
 }
 public ListResponse<EventEntity> LoadNotificationEvents()
 {
     var notificationEventManagement = new EventManagement();
     var response = notificationEventManagement.LoadNotificationEvents();
     return response;
 }
 public ListResponse<EventCategory> ListEventCategories()
 {
     var notificationEventManagement = new EventManagement();
     var response = notificationEventManagement.ListEventCategories();
     return response;
 }