Skip to content

Commit b1ee5fe

Browse files
committed
rename namespaces
1 parent f2c5772 commit b1ee5fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+63
-64
lines changed

BookStore.BLL.RepositoryService/AuthorService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using BookStore.DAL.Abstract;
4-
using BookStore.DLL.Abstract;
3+
using BookStore.DAL.Interface.Abstract;
4+
using BookStore.DLL.Interface.Abstract;
55
using BookStore.DO.Entities;
66

7-
namespace BookStore.BLL.RepositoryService
7+
namespace BookStore.DLL.RepositoryService
88
{
99
public class AuthorService:StoreService<Author>,IAuthorService
1010
{

BookStore.BLL.RepositoryService/BookService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
5-
using BookStore.DLL.Abstract;
4+
using BookStore.DAL.Interface.Abstract;
5+
using BookStore.DLL.Interface.Abstract;
66
using BookStore.DO.Entities;
77

8-
namespace BookStore.BLL.RepositoryService
8+
namespace BookStore.DLL.RepositoryService
99
{
1010

1111
public class BookService : StoreService<Book>, IBookService

BookStore.BLL.RepositoryService/BookStore.DLL.RepositoryService.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
6161
<Name>BookStore.DAL.Interface</Name>
6262
</ProjectReference>
63-
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Implementation.csproj">
63+
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Interface.csproj">
6464
<Project>{fd569b25-1c08-4e92-a42d-6bfbcb094c17}</Project>
65-
<Name>BookStore.DLL.Implementation</Name>
65+
<Name>BookStore.DLL.Interface</Name>
6666
</ProjectReference>
6767
<ProjectReference Include="..\BookStore.Domain\BookStore.DO.csproj">
6868
<Project>{b52fe83e-5fd1-4ed7-ad08-a003eb187650}</Project>

BookStore.BLL.RepositoryService/GenreService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using BookStore.DAL.Abstract;
4-
using BookStore.DLL.Abstract;
3+
using BookStore.DAL.Interface.Abstract;
4+
using BookStore.DLL.Interface.Abstract;
55
using BookStore.DO.Entities;
66

7-
namespace BookStore.BLL.RepositoryService
7+
namespace BookStore.DLL.RepositoryService
88
{
99
public class GenreService:StoreService<Genre>,IGenreService
1010
{

BookStore.BLL.RepositoryService/RoleService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using BookStore.DAL.Abstract;
2-
using BookStore.DLL.Abstract;
1+
using BookStore.DAL.Interface.Abstract;
2+
using BookStore.DLL.Interface.Abstract;
33
using BookStore.DO.Entities;
44

5-
namespace BookStore.BLL.RepositoryService
5+
namespace BookStore.DLL.RepositoryService
66
{
77
public class RoleService:StoreService<Role>,IRoleService
88
{

BookStore.BLL.RepositoryService/StoreService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
5-
using BookStore.DLL.Abstract;
4+
using BookStore.DAL.Interface.Abstract;
5+
using BookStore.DLL.Interface.Abstract;
66
using Ninject;
77

8-
namespace BookStore.BLL.RepositoryService
8+
namespace BookStore.DLL.RepositoryService
99
{
1010

1111
public abstract class StoreService<T> : IStoreService<T> where T:class

BookStore.BLL.RepositoryService/UserService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Threading.Tasks;
5-
using BookStore.DAL.Abstract;
6-
using BookStore.DLL.Abstract;
5+
using BookStore.DAL.Interface.Abstract;
6+
using BookStore.DLL.Interface.Abstract;
77
using BookStore.DO.Entities;
88
using Ninject;
99

10-
namespace BookStore.BLL.RepositoryService
10+
namespace BookStore.DLL.RepositoryService
1111
{
1212
public class UserService:StoreService<User>,IUserService
1313
{

BookStore.DAL.EntityFramework/EfAuthorRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
54
using BookStore.DO.Entities;
65
using System.Data.Entity;
6+
using BookStore.DAL.Interface.Abstract;
77

88

99
namespace BookStore.DAL.EntityFramework

BookStore.DAL.EntityFramework/EfBookRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
54
using BookStore.DO.Entities;
65
using System.Data.Entity;
6+
using BookStore.DAL.Interface.Abstract;
77

88
namespace BookStore.DAL.EntityFramework
99
{

BookStore.DAL.EntityFramework/EfGenreRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using BookStore.DAL.Abstract;
43
using BookStore.DO.Entities;
54
using System.Data.Entity;
5+
using BookStore.DAL.Interface.Abstract;
66

77

88
namespace BookStore.DAL.EntityFramework

BookStore.DAL.EntityFramework/EfRoleRepository.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using BookStore.DAL.Abstract;
43
using BookStore.DO.Entities;
5-
using System.Data.Entity;
4+
using System.Data.Entity;
5+
using BookStore.DAL.Interface.Abstract;
66

77

88
namespace BookStore.DAL.EntityFramework

BookStore.DAL.EntityFramework/EfStoreRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
4+
using BookStore.DAL.Interface.Abstract;
55

66
namespace BookStore.DAL.EntityFramework
77
{

BookStore.DAL.EntityFramework/EfUserRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using BookStore.DAL.Abstract;
54
using BookStore.DO.Entities;
65
using System.Data.Entity;
76
using System.Diagnostics;
87
using System.Threading.Tasks;
8+
using BookStore.DAL.Interface.Abstract;
99

1010

1111
namespace BookStore.DAL.EntityFramework

BookStore.DAL/Abstract/IAuthorRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DAL.Abstract
8+
namespace BookStore.DAL.Interface.Abstract
99
{
1010
public interface IAuthorRepository : IStoreRepository<Author>
1111
{

BookStore.DAL/Abstract/IBookRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using BookStore.DO.Entities;
77

8-
namespace BookStore.DAL.Abstract
8+
namespace BookStore.DAL.Interface.Abstract
99
{
1010
public interface IBookRepository : IStoreRepository<Book>
1111
{

BookStore.DAL/Abstract/IGenreRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DAL.Abstract
8+
namespace BookStore.DAL.Interface.Abstract
99
{
1010
public interface IGenreRepository:IStoreRepository<Genre>
1111
{

BookStore.DAL/Abstract/IRoleRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DAL.Abstract
8+
namespace BookStore.DAL.Interface.Abstract
99
{
1010
public interface IRoleRepository:IStoreRepository<Role>
1111
{

BookStore.DAL/Abstract/IStoreRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace BookStore.DAL.Abstract
7+
namespace BookStore.DAL.Interface.Abstract
88
{
99
public interface IStoreRepository<T> where T : class
1010
{

BookStore.DAL/Abstract/IUserRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DAL.Abstract
8+
namespace BookStore.DAL.Interface.Abstract
99
{
1010
public interface IUserRepository : IStoreRepository<User>
1111
{

BookStore.DLL/Abstract/IAuthorService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DLL.Abstract
8+
namespace BookStore.DLL.Interface.Abstract
99
{
1010
public interface IAuthorService:IStoreService<Author>
1111
{

BookStore.DLL/Abstract/IBookService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using BookStore.DO.Entities;
77

8-
namespace BookStore.DLL.Abstract
8+
namespace BookStore.DLL.Interface.Abstract
99
{
1010
public interface IBookService : IStoreService<Book>
1111
{

BookStore.DLL/Abstract/IGenreService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DLL.Abstract
8+
namespace BookStore.DLL.Interface.Abstract
99
{
1010
public interface IGenreService:IStoreService<Genre>
1111
{

BookStore.DLL/Abstract/IRoleService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DLL.Abstract
8+
namespace BookStore.DLL.Interface.Abstract
99
{
1010
public interface IRoleService:IStoreService<Role>
1111
{

BookStore.DLL/Abstract/IStoreService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace BookStore.DLL.Abstract
7+
namespace BookStore.DLL.Interface.Abstract
88
{
99
public interface IStoreService<T> where T : class
1010
{

BookStore.DLL/Abstract/IUserService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace BookStore.DLL.Abstract
8+
namespace BookStore.DLL.Interface.Abstract
99
{
1010
public interface IUserService:IStoreService<User>
1111
{

BookStore.Tests/BookStore.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
8383
<Name>BookStore.DAL.Interface</Name>
8484
</ProjectReference>
85-
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Implementation.csproj">
85+
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Interface.csproj">
8686
<Project>{fd569b25-1c08-4e92-a42d-6bfbcb094c17}</Project>
87-
<Name>BookStore.DLL.Implementation</Name>
87+
<Name>BookStore.DLL.Interface</Name>
8888
</ProjectReference>
8989
<ProjectReference Include="..\BookStore.Domain\BookStore.DO.csproj">
9090
<Project>{b52fe83e-5fd1-4ed7-ad08-a003eb187650}</Project>

BookStore.Tests/UnitTest1.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
using System.Collections.Generic;
44
using System.Linq;
55
using System.Web.Mvc;
6-
using BookStore.BLL.RepositoryService;
6+
using BookStore.DLL.Interface.RepositoryService;
77
using Microsoft.VisualStudio.TestTools.UnitTesting;
88
using BookStore.Controllers;
9-
using BookStore.DAL.Abstract;
10-
using BookStore.DAL.EntityFramework;
11-
using BookStore.DLL.Abstract;
9+
using BookStore.DAL.Interface.Abstract;
10+
using BookStore.DAL.Interface.EntityFramework;
11+
using BookStore.DLL.Interface.Abstract;
1212
using BookStore.DO.Entities;
1313
using BookStore.Models;
1414
using Moq;
1515
using Ninject;
16-
using IAuthorService = BookStore.DLL.Abstract.IAuthorService;
16+
using IAuthorService = BookStore.DLL.Interface.Abstract.IAuthorService;
1717

1818
namespace BookStore.Tests
1919
{

BookStore.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore.DO", "BookStore.D
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore.DAL.Interface", "BookStore.DAL\BookStore.DAL.Interface.csproj", "{9C9BE9DA-C07E-4CFA-BF31-1B527B6C3B39}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore.DLL.Implementation", "BookStore.DLL\BookStore.DLL.Implementation.csproj", "{FD569B25-1C08-4E92-A42D-6BFBCB094C17}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore.DLL.Interface", "BookStore.DLL\BookStore.DLL.Interface.csproj", "{FD569B25-1C08-4E92-A42D-6BFBCB094C17}"
1313
EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookStore.DAL.EntityFramework", "BookStore.DAL.EntityFramework\BookStore.DAL.EntityFramework.csproj", "{84D11725-F35C-4296-A063-39737433FFA5}"
1515
EndProject

BookStore/BookStore.WebUI.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@
408408
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
409409
<Name>BookStore.DAL.Interface</Name>
410410
</ProjectReference>
411-
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Implementation.csproj">
411+
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.Interface.csproj">
412412
<Project>{fd569b25-1c08-4e92-a42d-6bfbcb094c17}</Project>
413-
<Name>BookStore.DLL.Implementation</Name>
413+
<Name>BookStore.DLL.Interface</Name>
414414
</ProjectReference>
415415
<ProjectReference Include="..\BookStore.Domain\BookStore.DO.csproj">
416416
<Project>{b52fe83e-5fd1-4ed7-ad08-a003eb187650}</Project>

BookStore/Controllers/AccountController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using BookStore.Models;
88
using System.Web.Security;
99
using BookStore.DO.Entities;
10-
using BookStore.DLL.Abstract;
10+
using BookStore.DLL.Interface.Abstract;
1111

1212
namespace BookStore.Controllers
1313
{

BookStore/Controllers/AdminController.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
using System.Web.Mvc;
66
using BookStore.DO.Entities;
77
using BookStore.Models;
8-
using BookStore.DLL.Abstract;
8+
using BookStore.DLL.Interface.Abstract;
99
using System.Net;
1010
using System.IO;
1111
using System.Web.Hosting;
12-
using BookStore.DAL.Abstract;
1312
using NLog;
1413

1514
namespace BookStore.Controllers

BookStore/Controllers/AuthorController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Web;
55
using System.Web.Mvc;
6-
using BookStore.DLL.Abstract;
6+
using BookStore.DLL.Interface.Abstract;
77
using BookStore.DO.Entities;
88

99
namespace BookStore.Controllers

BookStore/Controllers/BookController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Xml.Linq;
1010
using BookStore.DO.Entities;
1111
using BookStore.Models;
12-
using BookStore.DLL.Abstract;
12+
using BookStore.DLL.Interface.Abstract;
1313

1414
namespace BookStore.Controllers
1515
{

BookStore/Controllers/NavigationController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Web;
55
using System.Web.Mvc;
6-
using BookStore.DLL.Abstract;
6+
using BookStore.DLL.Interface.Abstract;
77
using BookStore.DO.Entities;
88
using BookStore.Models;
99

BookStore/Controllers/SuggestController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Web;
55
using System.Web.Mvc;
6-
using BookStore.DLL.Abstract;
6+
using BookStore.DLL.Interface.Abstract;
77

88
namespace BookStore.Controllers
99
{

BookStore/Controllers/UserController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Web;
77
using System.Web.Mvc;
88
using System.Web.Security;
9-
using BookStore.DLL.Abstract;
9+
using BookStore.DLL.Interface.Abstract;
1010
using BookStore.DO.Entities;
1111
using NLog;
1212

0 commit comments

Comments
 (0)