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

10 lines
228 B
C#
Raw Normal View History

using LaDOSE.Business.Provider.SmashProvider;
using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface IPlayerService : IBaseService<Player>
{
int GetBySmash(PlayerType playerUser);
}
}