mirror of https://github.com/abpframework/abp.git
32 changed files with 32 additions and 32 deletions
@ -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"/>.
|
|||
Loading…
Reference in new issue