2022-03-20 02:59:48 +01:00
|
|
|
|
using LaDOSE.Business.Provider.SmashProvider;
|
|
|
|
|
|
using LaDOSE.Entity;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IPlayerService : IBaseService<Player>
|
|
|
|
|
|
{
|
2022-03-20 13:52:05 +01:00
|
|
|
|
int GetBySmash(ParticipantType participantUser);
|
2022-03-20 02:59:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|