From b9b052a4c816212e8e5489b0b2999cfc7acc9303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 29 Aug 2017 11:30:54 +0300 Subject: [PATCH] Change namespace of Dtos. --- .../AbpDesk/Tickets/Dtos/TicketDto.cs | 2 +- .../AbpDesk/Tickets/ITicketAppService.cs | 2 +- .../AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs | 2 +- .../Volo/Abp/Identity/IUserAppService.cs | 2 +- .../Volo/Abp/Identity/IdentityUserDto.cs | 2 +- .../Volo/Abp/Identity/UserAppService.cs | 2 +- .../Volo/Abp/Identity/HttpApiUserAppService.cs | 2 +- .../Volo/Abp/Identity/IdentityUsersController.cs | 2 +- src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/EntityDto.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/IEntityDto.cs | 2 +- .../Abp/Application/{Services => }/Dtos/IHasLongTotalCount.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/IHasTotalCount.cs | 2 +- .../Application/{Services => }/Dtos/ILimitedResultRequest.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/IListResult.cs | 2 +- .../{Services => }/Dtos/IPagedAndSortedResultRequest.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/IPagedResult.cs | 2 +- .../Abp/Application/{Services => }/Dtos/IPagedResultRequest.cs | 2 +- .../Abp/Application/{Services => }/Dtos/ISortedResultRequest.cs | 2 +- .../Application/{Services => }/Dtos/LimitedResultRequestDto.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/ListResultDto.cs | 2 +- .../{Services => }/Dtos/PagedAndSortedResultRequestDto.cs | 2 +- .../Volo/Abp/Application/{Services => }/Dtos/PagedResultDto.cs | 2 +- .../Application/{Services => }/Dtos/PagedResultRequestDto.cs | 2 +- .../Volo/Abp/Application/Services/AsyncCrudAppService.cs | 2 +- src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs | 2 +- .../Volo/Abp/Application/Services/CrudAppServiceBase.cs | 2 +- .../Volo/Abp/Application/Services/IAsyncCrudAppService.cs | 2 +- src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs | 2 +- .../Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs | 2 +- .../Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs | 2 +- .../Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/EntityDto.cs (96%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IEntityDto.cs (92%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IHasLongTotalCount.cs (87%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IHasTotalCount.cs (86%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/ILimitedResultRequest.cs (86%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IListResult.cs (90%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IPagedAndSortedResultRequest.cs (83%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IPagedResult.cs (87%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/IPagedResultRequest.cs (87%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/ISortedResultRequest.cs (92%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/LimitedResultRequestDto.cs (87%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/ListResultDto.cs (94%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/PagedAndSortedResultRequestDto.cs (87%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/PagedResultDto.cs (95%) rename src/Volo.Abp/Volo/Abp/Application/{Services => }/Dtos/PagedResultRequestDto.cs (88%) diff --git a/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/Dtos/TicketDto.cs b/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/Dtos/TicketDto.cs index a0f3d3790e..112b313e31 100644 --- a/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/Dtos/TicketDto.cs +++ b/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/Dtos/TicketDto.cs @@ -1,4 +1,4 @@ -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace AbpDesk.Tickets.Dtos { diff --git a/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/ITicketAppService.cs b/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/ITicketAppService.cs index 81077e270e..ddb47cfa60 100644 --- a/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/ITicketAppService.cs +++ b/src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/ITicketAppService.cs @@ -1,7 +1,7 @@ using System.Threading.Tasks; using AbpDesk.Tickets.Dtos; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; namespace AbpDesk.Tickets { diff --git a/src/AbpDesk/AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs b/src/AbpDesk/AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs index 685f266760..8f6108e6a9 100644 --- a/src/AbpDesk/AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs +++ b/src/AbpDesk/AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs @@ -3,8 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AbpDesk.Tickets.Dtos; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; using Volo.Abp.Domain.Repositories; using Volo.Abp.Linq; diff --git a/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IUserAppService.cs b/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IUserAppService.cs index 13d8f20d9e..a56bc6f038 100644 --- a/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IUserAppService.cs +++ b/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IUserAppService.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; namespace Volo.Abp.Identity { diff --git a/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityUserDto.cs b/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityUserDto.cs index 26e2cd5229..4dc78fd213 100644 --- a/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityUserDto.cs +++ b/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityUserDto.cs @@ -1,4 +1,4 @@ -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace Volo.Abp.Identity { diff --git a/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/UserAppService.cs b/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/UserAppService.cs index 9cd3161cd2..60befaf1cd 100644 --- a/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/UserAppService.cs +++ b/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/UserAppService.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; namespace Volo.Abp.Identity { diff --git a/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpApiUserAppService.cs b/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpApiUserAppService.cs index 35ab3bfaf7..347df1537b 100644 --- a/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpApiUserAppService.cs +++ b/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpApiUserAppService.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; using Microsoft.Extensions.Options; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace Volo.Abp.Identity { diff --git a/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUsersController.cs b/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUsersController.cs index 5615f42351..40c2f5a151 100644 --- a/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUsersController.cs +++ b/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUsersController.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; using Volo.Abp.AspNetCore.Mvc; namespace Volo.Abp.Identity diff --git a/src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs b/src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs index a0fbe834ac..eb95316974 100644 --- a/src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs +++ b/src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs @@ -1,7 +1,7 @@ using System.Linq.Expressions; using JetBrains.Annotations; using Volo.Abp; -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace System.Linq { diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/EntityDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/EntityDto.cs similarity index 96% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/EntityDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/EntityDto.cs index b33e91e6dc..87f1457e86 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/EntityDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/EntityDto.cs @@ -1,6 +1,6 @@ using System; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { public class EntityDto : EntityDto, IEntityDto { diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IEntityDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IEntityDto.cs similarity index 92% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IEntityDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IEntityDto.cs index 731a29b638..390e2fb743 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IEntityDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IEntityDto.cs @@ -1,6 +1,6 @@ using System; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// A shortcut of for default primary key type (). diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasLongTotalCount.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IHasLongTotalCount.cs similarity index 87% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasLongTotalCount.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IHasLongTotalCount.cs index 2e578bf611..46873e053e 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasLongTotalCount.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IHasLongTotalCount.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to set "Total Count of Items" to a DTO for long type. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasTotalCount.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IHasTotalCount.cs similarity index 86% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasTotalCount.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IHasTotalCount.cs index 1508cde4a7..e617421e45 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasTotalCount.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IHasTotalCount.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to set "Total Count of Items" to a DTO. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ILimitedResultRequest.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/ILimitedResultRequest.cs similarity index 86% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ILimitedResultRequest.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/ILimitedResultRequest.cs index 5027f18c1a..d0088fe155 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ILimitedResultRequest.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/ILimitedResultRequest.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to request a limited result. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IListResult.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IListResult.cs similarity index 90% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IListResult.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IListResult.cs index 831e71dec4..1eb2253b2c 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IListResult.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IListResult.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to return a list of items to clients. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedAndSortedResultRequest.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedAndSortedResultRequest.cs similarity index 83% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedAndSortedResultRequest.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedAndSortedResultRequest.cs index ede0990f95..d9a9014506 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedAndSortedResultRequest.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedAndSortedResultRequest.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to request a paged and sorted result. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResult.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResult.cs similarity index 87% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResult.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResult.cs index 86034be354..6132f69e42 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResult.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResult.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to return a page of items to clients. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResultRequest.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResultRequest.cs similarity index 87% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResultRequest.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResultRequest.cs index 02abd640c9..95e78fe18c 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResultRequest.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResultRequest.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to request a paged result. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ISortedResultRequest.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/ISortedResultRequest.cs similarity index 92% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ISortedResultRequest.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/ISortedResultRequest.cs index 61720c07c0..d821643588 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ISortedResultRequest.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/ISortedResultRequest.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// This interface is defined to standardize to request a sorted result. diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/LimitedResultRequestDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/LimitedResultRequestDto.cs similarity index 87% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/LimitedResultRequestDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/LimitedResultRequestDto.cs index e01ed6c4de..030901b38a 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/LimitedResultRequestDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/LimitedResultRequestDto.cs @@ -1,6 +1,6 @@ using System.ComponentModel.DataAnnotations; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// Simply implements . diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ListResultDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/ListResultDto.cs similarity index 94% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ListResultDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/ListResultDto.cs index 1f0c243da5..5b218b0dde 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ListResultDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/ListResultDto.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { public class ListResultDto { diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedAndSortedResultRequestDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedAndSortedResultRequestDto.cs similarity index 87% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedAndSortedResultRequestDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/PagedAndSortedResultRequestDto.cs index 4cfd95dec2..4f8d843046 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedAndSortedResultRequestDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedAndSortedResultRequestDto.cs @@ -1,6 +1,6 @@ using System; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// Simply implements . diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultDto.cs similarity index 95% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultDto.cs index b81debda37..e9972ef0b4 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultDto.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// Implements . diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultRequestDto.cs b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultRequestDto.cs similarity index 88% rename from src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultRequestDto.cs rename to src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultRequestDto.cs index adeaac9df3..e028dd3f8d 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultRequestDto.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultRequestDto.cs @@ -1,7 +1,7 @@ using System; using System.ComponentModel.DataAnnotations; -namespace Volo.Abp.Application.Services.Dtos +namespace Volo.Abp.Application.Dtos { /// /// Simply implements . diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/AsyncCrudAppService.cs b/src/Volo.Abp/Volo/Abp/Application/Services/AsyncCrudAppService.cs index 7e66355119..adc6795dcb 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/AsyncCrudAppService.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Services/AsyncCrudAppService.cs @@ -1,7 +1,7 @@ using System; using System.Linq; using System.Threading.Tasks; -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Repositories; using Volo.Abp.Linq; diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs b/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs index e3120f2d22..64e0cf8e92 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs @@ -1,6 +1,6 @@ using System; using System.Linq; -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Repositories; diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppServiceBase.cs b/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppServiceBase.cs index b6746b9ae8..9cea5dfb60 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppServiceBase.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Services/CrudAppServiceBase.cs @@ -2,8 +2,8 @@ using System.Linq; using System.Linq.Dynamic.Core; using Volo.Abp; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Repositories; diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/IAsyncCrudAppService.cs b/src/Volo.Abp/Volo/Abp/Application/Services/IAsyncCrudAppService.cs index 5d3f2905c1..9bfe3add43 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/IAsyncCrudAppService.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Services/IAsyncCrudAppService.cs @@ -1,7 +1,7 @@ using System; using System.Threading.Tasks; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; namespace Abp.Application.Services { diff --git a/src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs b/src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs index 268651dbe3..77c4692f66 100644 --- a/src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs +++ b/src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs @@ -1,6 +1,6 @@ using System; +using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; -using Volo.Abp.Application.Services.Dtos; namespace Abp.Application.Services { diff --git a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs index 3b5080a1da..61e3e9b3bd 100644 --- a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs +++ b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs @@ -1,4 +1,4 @@ -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace Volo.Abp.AutoMapper.SampleClasses { diff --git a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs index b95cffd0dd..b01af5a7f9 100644 --- a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs +++ b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs @@ -1,4 +1,4 @@ -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace Volo.Abp.AutoMapper.SampleClasses { diff --git a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs index 5cb1f531c1..a69e50d819 100644 --- a/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs +++ b/test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs @@ -1,4 +1,4 @@ -using Volo.Abp.Application.Services.Dtos; +using Volo.Abp.Application.Dtos; namespace Volo.Abp.AutoMapper.SampleClasses {