public async Task <Result> AddNotificationEndpoint(NotificationEndpoint notificationEndpoint)
        {
            var notificationEndpointDao = new DAO.NotificationEndpoint(notificationEndpoint);

            return(await _notificationDataStore.AddNotificationEndpoint(notificationEndpointDao));
        }
Exemplo n.º 2
0
 public NotificationEndpoint(DAO.NotificationEndpoint notificationEndpoint)
 {
     Identifier = notificationEndpoint.Identifier;
 }