14 lines
349 B
C#
14 lines
349 B
C#
using Seyounth.Hyosung.Data.Entities;
|
|
|
|
namespace Seyounth.Hyosung.Data.Services;
|
|
|
|
public interface IDictService
|
|
{
|
|
Task<string> GetKeyAsync(string type, string value);
|
|
|
|
Task<List<DictEntity>> GetDictsByTypeAsync(string type);
|
|
|
|
Task SetValue(string type, string key,string value);
|
|
|
|
Task<string> GetValue(string type, string key);
|
|
} |