10 lines
238 B
C#
10 lines
238 B
C#
using LaDOSE.Business.Provider.SmashProvider;
|
|
using LaDOSE.Entity;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IPlayerService : IBaseService<Player>
|
|
{
|
|
int GetBySmash(ParticipantType participantUser);
|
|
}
|
|
} |