aboutsummaryrefslogtreecommitdiff
path: root/src/Data
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data')
-rw-r--r--src/Data/DevHive.Data/Interfaces/ICommentRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Interfaces/IPostRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Interfaces/IRatingRepository.cs2
-rw-r--r--src/Data/DevHive.Data/Interfaces/IRepository.cs2
-rw-r--r--src/Data/DevHive.Data/Interfaces/IRoleRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Interfaces/IUserRepository.cs1
-rw-r--r--src/Data/DevHive.Data/Repositories/BaseRepository.cs2
9 files changed, 2 insertions, 10 deletions
diff --git a/src/Data/DevHive.Data/Interfaces/ICommentRepository.cs b/src/Data/DevHive.Data/Interfaces/ICommentRepository.cs
index f85849f..7b553ec 100644
--- a/src/Data/DevHive.Data/Interfaces/ICommentRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/ICommentRepository.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs b/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
index ea0e8c6..af512c5 100644
--- a/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/ILanguageRepository.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
index 5a04aed..d40a487 100644
--- a/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IPostRepository.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Interfaces/IRatingRepository.cs b/src/Data/DevHive.Data/Interfaces/IRatingRepository.cs
index db37d00..4840c59 100644
--- a/src/Data/DevHive.Data/Interfaces/IRatingRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IRatingRepository.cs
@@ -2,8 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
-
namespace DevHive.Data.Interfaces
{
public interface IRatingRepository : IRepository<Rating>
diff --git a/src/Data/DevHive.Data/Interfaces/IRepository.cs b/src/Data/DevHive.Data/Interfaces/IRepository.cs
index 0d11cd3..7db8667 100644
--- a/src/Data/DevHive.Data/Interfaces/IRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
-namespace DevHive.Data.Repositories.Interfaces
+namespace DevHive.Data.Interfaces
{
public interface IRepository<TEntity>
where TEntity : class
diff --git a/src/Data/DevHive.Data/Interfaces/IRoleRepository.cs b/src/Data/DevHive.Data/Interfaces/IRoleRepository.cs
index a1080bb..b12772c 100644
--- a/src/Data/DevHive.Data/Interfaces/IRoleRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IRoleRepository.cs
@@ -1,7 +1,6 @@
using System;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
index f746d9d..91c82ea 100644
--- a/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/ITechnologyRepository.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Interfaces/IUserRepository.cs b/src/Data/DevHive.Data/Interfaces/IUserRepository.cs
index aec0eb3..494f540 100644
--- a/src/Data/DevHive.Data/Interfaces/IUserRepository.cs
+++ b/src/Data/DevHive.Data/Interfaces/IUserRepository.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Data.Models;
-using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
diff --git a/src/Data/DevHive.Data/Repositories/BaseRepository.cs b/src/Data/DevHive.Data/Repositories/BaseRepository.cs
index ece372e..239a3bc 100644
--- a/src/Data/DevHive.Data/Repositories/BaseRepository.cs
+++ b/src/Data/DevHive.Data/Repositories/BaseRepository.cs
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
-using DevHive.Data.Repositories.Interfaces;
+using DevHive.Data.Interfaces;
using Microsoft.EntityFrameworkCore;
namespace DevHive.Data.Repositories