Skip to content

Commit 3ea43ca

Browse files
committed
Adjust namespaces
1 parent 87ee20f commit 3ea43ca

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

SQLite.CodeFirst.Console/Entity/IEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SQLite.CodeFirst.Entity
1+
namespace SQLite.CodeFirst.Console.Entity
22
{
33
interface IEntity
44
{

SQLite.CodeFirst.Console/Entity/Player.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SQLite.CodeFirst.Entity
1+
namespace SQLite.CodeFirst.Console.Entity
22
{
33
public class Player : IEntity
44
{

SQLite.CodeFirst.Console/Entity/Team.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace SQLite.CodeFirst.Entity
3+
namespace SQLite.CodeFirst.Console.Entity
44
{
55
public class Team : IEntity
66
{

SQLite.CodeFirst.Console/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Linq;
2-
using SQLite.CodeFirst.Entity;
2+
using SQLite.CodeFirst.Console.Entity;
33

4-
namespace SQLite.CodeFirst
4+
namespace SQLite.CodeFirst.Console
55
{
66
public static class Program
77
{

SQLite.CodeFirst.Console/TestDbContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Data.Entity;
22
using System.Data.Entity.ModelConfiguration.Conventions;
3-
using SQLite.CodeFirst.Entity;
3+
using SQLite.CodeFirst.Console.Entity;
44

5-
namespace SQLite.CodeFirst
5+
namespace SQLite.CodeFirst.Console
66
{
77
public class TestDbContext : DbContext
88
{

0 commit comments

Comments
 (0)