Change namespace of Dtos.

pull/96/head
Halil İbrahim Kalkan 8 years ago
parent 746e946eb1
commit b9b052a4c8

@ -1,4 +1,4 @@
using Volo.Abp.Application.Services.Dtos;
using Volo.Abp.Application.Dtos;
namespace AbpDesk.Tickets.Dtos
{

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

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

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

@ -1,4 +1,4 @@
using Volo.Abp.Application.Services.Dtos;
using Volo.Abp.Application.Dtos;
namespace Volo.Abp.Identity
{

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

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

@ -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

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

@ -1,6 +1,6 @@
using System;
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
public class EntityDto : EntityDto<Guid>, IEntityDto
{

@ -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"/>).

@ -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.

@ -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.

@ -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.

@ -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.

@ -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.

@ -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.

@ -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.

@ -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.

@ -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"/>.

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
public class ListResultDto<T>
{

@ -1,6 +1,6 @@
using System;
namespace Volo.Abp.Application.Services.Dtos
namespace Volo.Abp.Application.Dtos
{
/// <summary>
/// Simply implements <see cref="IPagedAndSortedResultRequest"/>.

@ -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}"/>.

@ -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"/>.

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

@ -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,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;

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

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

@ -1,4 +1,4 @@
using Volo.Abp.Application.Services.Dtos;
using Volo.Abp.Application.Dtos;
namespace Volo.Abp.AutoMapper.SampleClasses
{

@ -1,4 +1,4 @@
using Volo.Abp.Application.Services.Dtos;
using Volo.Abp.Application.Dtos;
namespace Volo.Abp.AutoMapper.SampleClasses
{

@ -1,4 +1,4 @@
using Volo.Abp.Application.Services.Dtos;
using Volo.Abp.Application.Dtos;
namespace Volo.Abp.AutoMapper.SampleClasses
{

Loading…
Cancel
Save