2022-03-20 02:59:48 +01:00
|
|
|
|
using LaDOSE.Business.Provider.SmashProvider;
|
|
|
|
|
|
using LaDOSE.Entity;
|
2022-03-20 19:36:15 +01:00
|
|
|
|
using LaDOSE.Entity.Challonge;
|
2022-03-20 02:59:48 +01:00
|
|
|
|
|
|
|
|
|
|
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);
|
2022-03-20 02:59:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|