Browse Source

Change namespace of Dtos.

pull/96/head
Halil İbrahim Kalkan 9 years ago
parent
commit
b9b052a4c8
  1. 2
      src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/Dtos/TicketDto.cs
  2. 2
      src/AbpDesk/AbpDesk.Application.Contracts/AbpDesk/Tickets/ITicketAppService.cs
  3. 2
      src/AbpDesk/AbpDesk.Application/AbpDesk/Tickets/TicketAppService.cs
  4. 2
      src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IUserAppService.cs
  5. 2
      src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityUserDto.cs
  6. 2
      src/Volo.Abp.Identity.Application/Volo/Abp/Identity/UserAppService.cs
  7. 2
      src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpApiUserAppService.cs
  8. 2
      src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUsersController.cs
  9. 2
      src/Volo.Abp/System/Linq/AbpQueryableExtensions.cs
  10. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/EntityDto.cs
  11. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IEntityDto.cs
  12. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IHasLongTotalCount.cs
  13. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IHasTotalCount.cs
  14. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/ILimitedResultRequest.cs
  15. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IListResult.cs
  16. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedAndSortedResultRequest.cs
  17. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResult.cs
  18. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResultRequest.cs
  19. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/ISortedResultRequest.cs
  20. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/LimitedResultRequestDto.cs
  21. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/ListResultDto.cs
  22. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/PagedAndSortedResultRequestDto.cs
  23. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultDto.cs
  24. 2
      src/Volo.Abp/Volo/Abp/Application/Dtos/PagedResultRequestDto.cs
  25. 2
      src/Volo.Abp/Volo/Abp/Application/Services/AsyncCrudAppService.cs
  26. 2
      src/Volo.Abp/Volo/Abp/Application/Services/CrudAppService.cs
  27. 2
      src/Volo.Abp/Volo/Abp/Application/Services/CrudAppServiceBase.cs
  28. 2
      src/Volo.Abp/Volo/Abp/Application/Services/IAsyncCrudAppService.cs
  29. 2
      src/Volo.Abp/Volo/Abp/Application/Services/ICrudAppService.cs
  30. 2
      test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto.cs
  31. 2
      test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyEntityDto2.cs
  32. 2
      test/Volo.Abp.AutoMapper.Tests/Volo/Abp/AutoMapper/SampleClasses/MyNotMappedDto.cs

2
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
{

2
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
{

2
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;

2
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
{

2
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
{

2
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
{

2
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
{

2
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

2
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
{

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/EntityDto.cs → 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<Guid>, IEntityDto
{

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IEntityDto.cs → 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
{
/// <summary>
/// A shortcut of <see cref="IEntityDto{TPrimaryKey}"/> for default primary key type (<see cref="Guid"/>).

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasLongTotalCount.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/IHasLongTotalCount.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to set "Total Count of Items" to a DTO for long type.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IHasTotalCount.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/IHasTotalCount.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to set "Total Count of Items" to a DTO.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ILimitedResultRequest.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/ILimitedResultRequest.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to request a limited result.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IListResult.cs → 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
{
/// <summary>
/// This interface is defined to standardize to return a list of items to clients.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedAndSortedResultRequest.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedAndSortedResultRequest.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to request a paged and sorted result.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResult.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResult.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to return a page of items to clients.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/IPagedResultRequest.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/IPagedResultRequest.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to request a paged result.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ISortedResultRequest.cs → src/Volo.Abp/Volo/Abp/Application/Dtos/ISortedResultRequest.cs

@ -1,4 +1,4 @@
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// This interface is defined to standardize to request a sorted result.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/LimitedResultRequestDto.cs → 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
{
/// <summary>
/// Simply implements <see cref="ILimitedResultRequest"/>.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/ListResultDto.cs → 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<T>
{

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedAndSortedResultRequestDto.cs → 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
{
/// <summary>
/// Simply implements <see cref="IPagedAndSortedResultRequest"/>.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultDto.cs → 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
{
/// <summary>
/// Implements <see cref="IPagedResult{T}"/>.

2
src/Volo.Abp/Volo/Abp/Application/Services/Dtos/PagedResultRequestDto.cs → 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
{
/// <summary>
/// Simply implements <see cref="IPagedResultRequest"/>.

2
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;

2
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;

2
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;

2
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
{

2
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
{

2
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
{

2
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
{

2
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
{

Loading…
Cancel
Save