summaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-21 16:34:39 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-21 16:34:39 -0600
commitb3deb8c5d92dd616042ea9e265c197abe02f995c (patch)
tree235d1597fb1729ebbd0c898fada61e0a76b5a95e /Program.cs
parent3e67b71325f51c1a83a4cb7d78586690c4d89a0c (diff)
Añadido controlador de rifas
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
index 57feb17..69244aa 100644
--- a/Program.cs
+++ b/Program.cs
@@ -24,6 +24,7 @@ builder.Services.AddAutoMapper(typeof(Program));
// Custom services configuration.
builder.Services.AddSingleton<ITokenGenerator>(s => new TokenGenerator(builder.Configuration["Jwt:Key"]));
builder.Services.AddScoped<IUserAccountService, UserAccountService>();
+builder.Services.AddScoped<IRaffleService, RaffleService>();
// End of custom services configuration.
// Swagger configuration.