diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-08 16:49:17 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-08 16:49:17 +0300 |
| commit | a1e46b76a1299e35b1ac8cae69e77c66d74224a6 (patch) | |
| tree | 068730b87c507df6386ff062ea620811dd6645ae /ExamTemplate/Web | |
| parent | e18090705f9b3d2a4be877743364f77f5effc46c (diff) | |
| download | it-kariera-exam-template-a1e46b76a1299e35b1ac8cae69e77c66d74224a6.tar it-kariera-exam-template-a1e46b76a1299e35b1ac8cae69e77c66d74224a6.tar.gz it-kariera-exam-template-a1e46b76a1299e35b1ac8cae69e77c66d74224a6.zip | |
Moved user repository logic into user service logic (no more repos)
Diffstat (limited to 'ExamTemplate/Web')
| -rw-r--r-- | ExamTemplate/Web/Startup.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ExamTemplate/Web/Startup.cs b/ExamTemplate/Web/Startup.cs index 9c43601..0754bff 100644 --- a/ExamTemplate/Web/Startup.cs +++ b/ExamTemplate/Web/Startup.cs @@ -2,7 +2,6 @@ using System; using System.Linq;
using ExamTemplate.Data;
using ExamTemplate.Data.Models;
-using ExamTemplate.Data.Repositories;
using ExamTemplate.Services;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@@ -14,7 +13,7 @@ using Microsoft.Extensions.Hosting; namespace Web
{
- public class Startup
+ public class Startup
{
public Startup(IConfiguration configuration)
{
@@ -34,7 +33,6 @@ namespace Web */
services.AddTransient<UserService>();
- services.AddTransient<UserRepository>();
/*
* Database configuration
|
