-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Adopt more precise naming for data access layer components. #435
Conversation
src/app/ApplicationTemplate.Tests.Functional/ForceUpdate/ForceUpdatesShould.cs
Outdated
Show resolved
Hide resolved
src/app/ApplicationTemplate.Tests.Functional/ForceUpdate/ForceUpdatesShould.cs
Outdated
Show resolved
Hide resolved
80183bd
to
cf35fab
Compare
cf35fab
to
1eda3e9
Compare
@@ -7,7 +7,7 @@ namespace ApplicationTemplate.DataAccess; | |||
/// <summary> | |||
/// Mock implementation of the kill switch repository. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
@@ -6,7 +6,7 @@ namespace ApplicationTemplate.DataAccess; | |||
/// <summary> | |||
/// A mock implementation of the minimum version repository. Used for testing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
@@ -16,7 +16,7 @@ public static class NativePlatformConfiguration | |||
public static IServiceCollection AddNativePlaformRepositories(this IServiceCollection services) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
@@ -14,10 +14,10 @@ public sealed class UpdateRequiredService : IUpdateRequiredService, IDisposable | |||
/// <summary> | |||
/// Initializes a new instance of the <see cref="UpdateRequiredService"/> class. | |||
/// </summary> | |||
/// <param name="minimumVersionReposiory">A repository that contains an observable we can use to update the app.</param> | |||
public UpdateRequiredService(IMinimumVersionReposiory minimumVersionReposiory) | |||
/// <param name="minimumVersionProvider">A repository that contains an observable we can use to update the app.</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
@@ -27,7 +27,7 @@ public sealed class DiagnosticsService : IDiagnosticsService | |||
private readonly IDispatcherScheduler _dispatcherScheduler; | |||
private readonly IOptions<ReadOnlyConfigurationOptions> _configurationOptions; | |||
private readonly ILogger _logger; | |||
private readonly IEmailRepository _emailRepository; | |||
private readonly IEmailService _emailRepository; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
@@ -40,7 +40,7 @@ public DiagnosticsService( | |||
IDispatcherScheduler dispatcherScheduler, | |||
IOptions<ReadOnlyConfigurationOptions> configurationOptions, | |||
ILogger<DiagnosticsService> logger, | |||
IEmailRepository emailRepository, | |||
IEmailService emailRepository, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
}); | ||
|
||
/// <summary> | ||
/// Gets a command that raises the kill switch event. | ||
/// </summary> | ||
public IDynamicCommand TriggerKillSwitch => this.GetCommand(() => | ||
{ | ||
var killSwitchRepository = this.GetService<IKillSwitchRepository>(); | ||
var killSwitchRepository = this.GetService<IKillSwitchDataSource>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change repository
GitHub Issue: #
Proposed Changes
Description
IsExternalInit.cs
files.Repository
.Impact on version
PR Checklist
Always applicable
No matter your changes, these checks always apply.
README.md
andTemplateConfig.md
if you made changes to templating.AzurePipelines.md
andAPP_README.md
if you made changes to pipelines.Diagnostics.md
if you made changes to diagnostic tools.Architecture.md
and its diagrams if you made architecture decisions or if you introduced new recipes.doc/
folder.Contextual
Based on your changes these checks may not apply.
Other information
Internal Issue (If applicable):