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

10 lines
238 B
C#
Raw Normal View History

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