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

            return(await _notificationDataStore.AddNotificationEndpoint(notificationEndpointDao));
        }
Пример #2
0
 public NotificationEndpoint(DAO.NotificationEndpoint notificationEndpoint)
 {
     Identifier = notificationEndpoint.Identifier;
 }