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

11 lines
212 B
C#
Raw Normal View History

2018-10-06 14:16:42 +02:00
using System.Collections.Generic;
using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface IGameService : IBaseService<Game>
2018-10-06 14:16:42 +02:00
{
2022-03-20 19:36:15 +01:00
public int? GetIdByName(string name);
2018-10-06 14:16:42 +02:00
}
}