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