Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FIT-Connect-SDK - .NET
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect-SDK - .NET
Commits
88dee073
Commit
88dee073
authored
2 years ago
by
Klaus Fischer
Browse files
Options
Downloads
Patches
Plain Diff
Updated contructors
parent
1d8cca9b
No related branches found
No related tags found
1 merge request
!3
Feature/440 mvp net sdk part 1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FitConnect/Sender.cs
+6
-0
6 additions, 0 deletions
FitConnect/Sender.cs
FitConnect/Subscriber.cs
+5
-0
5 additions, 0 deletions
FitConnect/Subscriber.cs
with
11 additions
and
0 deletions
FitConnect/Sender.cs
+
6
−
0
View file @
88dee073
...
@@ -7,6 +7,12 @@ using Microsoft.Extensions.Logging;
...
@@ -7,6 +7,12 @@ using Microsoft.Extensions.Logging;
namespace
FitConnect
;
namespace
FitConnect
;
public
class
Sender
:
FunctionalBaseClass
{
public
class
Sender
:
FunctionalBaseClass
{
/// <summary>
/// Constructor for the Sender class.
/// </summary>
/// <param name="logger">ILogger implementation</param>
/// <param name="endpoints">FitConnect endpoints</param>
public
Sender
(
ILogger
?
logger
,
FitConnectEndpoints
endpoints
)
:
base
(
logger
,
endpoints
)
{
public
Sender
(
ILogger
?
logger
,
FitConnectEndpoints
endpoints
)
:
base
(
logger
,
endpoints
)
{
}
}
...
...
This diff is collapsed.
Click to expand it.
FitConnect/Subscriber.cs
+
5
−
0
View file @
88dee073
...
@@ -7,6 +7,11 @@ using Newtonsoft.Json.Schema;
...
@@ -7,6 +7,11 @@ using Newtonsoft.Json.Schema;
namespace
FitConnect
;
namespace
FitConnect
;
public
class
Subscriber
:
FunctionalBaseClass
{
public
class
Subscriber
:
FunctionalBaseClass
{
/// <summary>
/// Constructor for the Subscriber class.
/// </summary>
/// <param name="logger">ILogger implementation</param>
/// <param name="endpoints">FitConnect endpoints</param>
public
Subscriber
(
ILogger
logger
,
FitConnectEndpoints
endpoints
)
:
base
(
logger
,
endpoints
)
{
public
Subscriber
(
ILogger
logger
,
FitConnectEndpoints
endpoints
)
:
base
(
logger
,
endpoints
)
{
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment