FleetOne.SAPNotificationPublisher 1.3.0

dotnet add package FleetOne.SAPNotificationPublisher --version 1.3.0
                    
NuGet\Install-Package FleetOne.SAPNotificationPublisher -Version 1.3.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FleetOne.SAPNotificationPublisher" Version="1.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FleetOne.SAPNotificationPublisher" Version="1.3.0" />
                    
Directory.Packages.props
<PackageReference Include="FleetOne.SAPNotificationPublisher" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FleetOne.SAPNotificationPublisher --version 1.3.0
                    
#r "nuget: FleetOne.SAPNotificationPublisher, 1.3.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=FleetOne.SAPNotificationPublisher&version=1.3.0
                    
Install as a Cake Addin
#tool nuget:?package=FleetOne.SAPNotificationPublisher&version=1.3.0
                    
Install as a Cake Tool

Generates and publishes notifications to SAP

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.0 1,207 7/21/2017
1.2.0 1,036 7/21/2017
1.1.0 1,125 9/29/2016
1.0.7 1,141 6/24/2016
1.0.6 1,145 6/24/2016
1.0.5 1,131 6/23/2016
1.0.4 1,131 4/12/2016
1.0.3 1,155 4/12/2016
1.0.2 1,175 4/12/2016
1.0.1 1,177 4/4/2016

Usage Example:

//Lookup by name
NDTActionType ndtActionByName = NDTActionType.FindByActionName("Drawbar");
NotificationRequest ndtRequest1 = NotificationRequest.GenerateNDTNotificationRequest("description", "extPriority", "raiseDate", "status", "vehicleTag", ndtActionByName);
NotificationCreator.RaiseNotification(ndtRequest1, @"C:\SAPDir\");

//Lookup pre-defined type
NDTActionType ndtActionByType = NDTActionType.FixedCoupler;
NotificationRequest ndtRequest2 = NotificationRequest.GenerateNDTNotificationRequest("description", "extPriority", "raiseDate", "status", "vehicleTag", ndtActionByType);
NotificationCreator.RaiseNotification(ndtRequest2, @"C:\SAPDir\");

//Lookup pre-defined type from list
NDTActionType ndtActionFromList = NDTActionType.ToList().First();
NotificationRequest ndtRequest3 = NotificationRequest.GenerateNDTNotificationRequest("description", "extPriority", "raiseDate", "status", "vehicleTag", ndtActionFromList);
NotificationCreator.RaiseNotification(ndtRequest3, @"C:\SAPDir\");

//Create  wheelset changeout then raise component Request
NotificationRequest request = NotificationRequest.GenerateNotificationRequest("description", "extPriority", "raiseDate", "status", "vehicleTag", "axle", "side");
NotificationCreator.RaiseNotification(request, @"C:\SAPDir\");