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.
 
 
 
 
 
 

23 lines
680 B

using BaseService.BaseData.DataDictionaryManagement.Dto;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
namespace BaseService.BaseData.DataDictionaryManagement
{
public interface IDictionaryAppService : IApplicationService
{
Task<PagedResultDto<DictionaryDto>> GetAll(GetDictionaryInputDto input);
Task<DictionaryDto> Get(Guid id);
Task<DictionaryDto> Create(CreateOrUpdateDictionaryDto input);
Task<DictionaryDto> Update(Guid id, CreateOrUpdateDictionaryDto input);
Task Delete(List<Guid> ids);
}
}