| 123456789101112131415161718 |
- using Abp.Application.Services;
- using Abp.Application.Services.Dto;
- using Abp.Domain.Entities;
- using Abp.Domain.Repositories;
- namespace IwbZero.AppServiceBase
- {
- public abstract class IwbZeroCrudAppServiceBase<TEntity, TEntityDto, TPrimaryKey, TGetAllInput, TCreateInput, TUpdateInput> : CrudAppServiceBase<TEntity, TEntityDto, TPrimaryKey, TGetAllInput, TCreateInput, TUpdateInput>
- where TEntity : class, IEntity<TPrimaryKey>
- where TEntityDto : IEntityDto<TPrimaryKey>
- where TUpdateInput : IEntityDto<TPrimaryKey>
- where TGetAllInput : IIwbPagedRequest
- {
- protected IwbZeroCrudAppServiceBase(IRepository<TEntity, TPrimaryKey> repository) : base(repository)
- {
- }
- }
- }
|