コード例 #1
0
        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;
 }