Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IPlayerService.cs
2022-03-20 13:52:05 +01:00

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);
}
}