using Seyounth.Hyosung.Data.Entities; namespace Seyounth.Hyosung.Data.Services; public interface IDictService { Task GetKeyAsync(string type, string value); Task> GetDictsByTypeAsync(string type); Task SetValue(string type, string key,string value); Task GetValue(string type, string key); }