14 lines
335 B
C#
14 lines
335 B
C#
namespace Application.Domain;
|
|
|
|
public interface IGameCdkService
|
|
{
|
|
Task<game_cdk> GetCdkInfo(int cdkId);
|
|
|
|
Task<game_cdk_item> GetCdkItemInfo(string cdk);
|
|
|
|
Task<bool> UpdateCdkUser(string cdk, string userId);
|
|
|
|
Task<int> GetUserCdkCount(int cdkId, string userId);
|
|
|
|
Task<bool> AddCdkItem(List<game_cdk_item> data);
|
|
} |