You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>A worker service designed to migrate data from the MyGeotab API Adapter database into another set of tables that are optimized for use by applications and data analysis tools. Additional columns are added to some of the tables and these are populated via interpolation or other query-based procedues.</Description>
Copy file name to clipboardExpand all lines: MyGeotabAPIAdapter.Database/DatabaseValidator.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ public class DatabaseValidator : IDatabaseValidator
17
17
// The required version of the middleware database for the current version of the middleware application. Any time the middleware database is updated as part of an application update:
18
18
// 1. This value should be updated to reflect the application version at the time.
19
19
// 2. Database changes should be included in a single script file and the filename should be formatted as "prefix_version_suffix.sql" (e.g. "MSSQL_3.0.0.0_InitialSchemaCreation.sql") where the version portion of the filename is equal to the value of this constant.
Copy file name to clipboardExpand all lines: MyGeotabAPIAdapter/MyGeotabAPIAdapter.csproj
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@
9
9
<Product>MyGeotab API Adapter</Product>
10
10
<Description>A .NET Core (C#) Worker Service designed to use the MyGeotab .NET API and serve as a broker between a MyGeotab database and an associated "Virtual Geotab Database". Intended for use when direct utilization of the MyGeotab SDK is not an option. Modify as required to meet individual solution objectives.</Description>
Copy file name to clipboardExpand all lines: MyGeotabAPIAdapter/Program.cs
+41-27Lines changed: 41 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -29,52 +29,50 @@
29
29
usingNLog;
30
30
usingNLog.Extensions.Logging;
31
31
usingMicrosoft.Extensions.Options;
32
+
usingSystem.Threading.Tasks;
32
33
33
34
namespaceMyGeotabAPIAdapter
34
35
{
35
36
/// <summary>
36
-
/// The main program. Handles initialization of logging and configuration settings and instantiates the <see cref="Worker"/> class, which is responsible for execution of application logic.
37
+
/// The main program. Handles initialization of logging and configuration settings and instantiates the application's services.
0 commit comments