Skip to content

Commit 42fd70d

Browse files
authored
Merge pull request #69
fix: Correct `IInvitationRepository` registration to use `InvitationRepository`
2 parents cd561cb + 9a3a5e8 commit 42fd70d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SnackFlow.Infrastructure/DependencyInjection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static void AddRepositories(this IServiceCollection services)
8989
{
9090
services.AddScoped<ICompanyRepository, CompanyRepository>();
9191
services.AddScoped<IUserRepository, UserRepository>();
92-
services.AddScoped<IInvitationRepository, IInvitationRepository>();
92+
services.AddScoped<IInvitationRepository, InvitationRepository>();
9393
services.AddScoped<IUnitOfWork, UnitOfWork>();
9494
}
9595

0 commit comments

Comments
 (0)