using IRaCIS.Application.Contracts;
namespace IRaCIS.Application.Interfaces
{
    public interface IDictionaryService
    {
        /// 
        /// 获取是和否
        /// 
        /// 
        /// 
        Task GetBoolValueState(bool value);
        /// 
        /// 获取审核状态
        /// 
        /// 
        /// 
        /// 
        /// 
        Task GetAuditState(Guid trial, T childCode);
        /// 
        /// 获取枚举翻译
        /// 
        /// 
        /// 
        /// 
        /// 
        Task GetBasicDataTranslateItem(string parentCode, T childCode);
        Task>> GetBasicDataSelect(string[] searchArray);
    }
}