public Guid LogMessage(OperationContext context, NotificationMessage message)
        {
            var entry = new NotificationLogEntry(context, message);

            _backgroundSave.AddObject(entry);
            return(entry.Id.Value); //it is always there
        }
Example #2
0
 public Guid LogMessage(OperationContext context, NotificationMessage message)
 {
     var entry = new NotificationLogEntry(context, message);
       _backgroundSave.AddObject(entry);
       return entry.Id.Value; //it is always there
 }