Added ServiceController

This commit is contained in:
Richárd Kunkli
2020-11-01 12:25:45 +01:00
parent 1172d89484
commit 87d65ba25d
8 changed files with 218 additions and 2 deletions

View File

@ -11,6 +11,7 @@ namespace Birdmap.BLL
{
services.AddTransient<IAuthService, AuthService>();
services.AddTransient<IUserService, UserService>();
services.AddTransient<IServiceService, ServiceService>();
return services;
}