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
815 B
25 lines
815 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 IDictionaryDetailAppService : IApplicationService
|
|
{
|
|
Task<PagedResultDto<DictionaryDetailDto>> GetAll(GetDictionaryDetailInputDto input);
|
|
|
|
Task<ListResultDto<DictionaryDetailDto>> GetAllByDictionaryName(string name);
|
|
|
|
Task<DictionaryDetailDto> Get(Guid id);
|
|
|
|
Task<DictionaryDetailDto> Create(CreateOrUpdateDictionaryDetailDto input);
|
|
|
|
Task<DictionaryDetailDto> Update(Guid id, CreateOrUpdateDictionaryDetailDto input);
|
|
|
|
Task Delete(List<Guid> ids);
|
|
}
|
|
}
|
|
|