11 lines
396 B
C#
11 lines
396 B
C#
namespace Application.Domain;
|
|
|
|
public interface IGameEscortService
|
|
{
|
|
Task<List<game_escort>> GetEscortData();
|
|
Task<game_escort> GetEscortInfo(int esId);
|
|
Task<unit_user_escort> GetUserEscort(string userId);
|
|
Task<bool> ClearUserEscort(string userId);
|
|
Task<bool> UpdateUserEscort(string userId, int esId, string name);
|
|
Task<bool> UpdateUserEscort(unit_user_escort data);
|
|
} |