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.
25 lines
1.1 KiB
25 lines
1.1 KiB
using System;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Win_in.Sfs.Shared.Application;
|
|
using Win_in.Sfs.Shared.Application.Contracts;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Wms.DataExchange.Domain;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application;
|
|
|
|
[ApiExplorerSettings(GroupName = SwaggerGroupConsts.WmsWebApi)]
|
|
public abstract class SfsDataExchangeCrudWithDetailsAppServiceBase<TEntity, TEntityDto, TRequestInput, TCreateInput, TUpdateInput,
|
|
TDetail, TDetailDTO, TDetailRequestInput, TImportInput>
|
|
: SfsCrudWithDetailsAppServiceBase<TEntity, TEntityDto, TRequestInput, TCreateInput, TDetail, TDetailDTO, TDetailRequestInput, TImportInput>
|
|
where TEntity : class, IMasterEntity<TDetail>, IHasNumber, IHasWorker
|
|
where TEntityDto : class, IEntityDto<Guid>, new()
|
|
where TDetail : SfsDataExchangeDetailEntityBase
|
|
where TDetailDTO : class, new()
|
|
where TImportInput : class, new()
|
|
where TRequestInput : SfsRequestInputBase
|
|
{
|
|
protected SfsDataExchangeCrudWithDetailsAppServiceBase(ISfsRepositoryBase<TEntity> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
|