You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
965 B
C#
30 lines
965 B
C#
using Volo.Abp.Application.Services;
|
|
|
|
namespace NPin.Framework.Ddd.Application.Contracts;
|
|
|
|
public interface INPinCrudAppService<TEntityDto, in TKey> : ICrudAppService<TEntityDto, TKey>
|
|
{
|
|
}
|
|
|
|
public interface
|
|
INPinCrudAppService<TEntityDto, in TKey, in TGetListInput> : ICrudAppService<TEntityDto, TKey, TGetListInput>
|
|
{
|
|
}
|
|
|
|
public interface
|
|
INPinCrudAppService<TEntityDto, in TKey, in TGetListInput, in TCreateInput> : ICrudAppService<TEntityDto, TKey,
|
|
TGetListInput, TCreateInput>
|
|
{
|
|
}
|
|
|
|
public interface INPinCrudAppService<TEntityDto, in TKey, in TGetListInput, in TCreateInput, in TUpdateInput> :
|
|
ICrudAppService<TEntityDto, TKey, TGetListInput, TCreateInput, TUpdateInput>
|
|
{
|
|
}
|
|
|
|
public interface INPinCrudAppService<TEntityDto, TGetListOutputDto, in TKey, in TGetListInput, in TCreateInput,
|
|
in TUpdateInput> :
|
|
ICrudAppService<TEntityDto, TGetListOutputDto, TKey, TGetListInput, TCreateInput, TUpdateInput>,
|
|
IDeleteAppService<TKey>
|
|
{
|
|
} |