10 lines
238 B
C#
10 lines
238 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);
|
|
} |