You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
844 B
22 lines
844 B
2 years ago
|
using System;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Volo.Abp.Domain.Entities;
|
||
|
using Win_in.Sfs.Shared.Application.Contracts;
|
||
|
using Win_in.Sfs.Shared.Domain;
|
||
|
|
||
|
namespace Win_in.Sfs.Shared.Application;
|
||
|
|
||
|
public abstract class SfsCrudAppServiceBase<TEntity, TEntityDto, TRequestInput, TCreateInput, TImportInput>
|
||
|
: SfsCrudWithDetailsAppServiceBase<TEntity, TEntityDto, TRequestInput, TCreateInput,
|
||
|
EmptyDetail, EmptyDetailDTO, EmptyDetailRequestInput, TImportInput>
|
||
|
, ISfsCrudAppService<TEntityDto, TRequestInput, TCreateInput>
|
||
|
where TEntity : class, IEntity<Guid>
|
||
|
where TEntityDto : class, IEntityDto<Guid>, new()
|
||
|
where TRequestInput : SfsRequestInputBase
|
||
|
where TImportInput : class, IImportInput, new()
|
||
|
{
|
||
|
protected SfsCrudAppServiceBase(ISfsRepositoryBase<TEntity> repository) : base(repository)
|
||
|
{
|
||
|
}
|
||
|
}
|