mirror of https://github.com/abpframework/abp
parent
746e946eb1
commit
b9b052a4c8
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace Volo.Abp.Application.Services.Dtos
|
||||
namespace Volo.Abp.Application.Dtos
|
||||
{
|
||||
public class EntityDto : EntityDto<Guid>, IEntityDto
|
||||
{
|
||||
@ -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}"/>.
|
||||
Loading…
Reference in new issue