Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IPlayerService.cs

12 lines
339 B
C#
Raw Normal View History

using LaDOSE.Business.Provider.SmashProvider;
using LaDOSE.Entity;
2022-03-20 19:36:15 +01:00
using LaDOSE.Entity.Challonge;
namespace LaDOSE.Business.Interface
{
public interface IPlayerService : IBaseService<Player>
{
2022-03-20 19:36:15 +01:00
int GetIdBySmash(ParticipantType participantUser);
int GetIdByName(ChallongeParticipent challongeParticipent);
}
}