2018-10-06 14:16:42 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using LaDOSE.Entity;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
|
|
|
|
{
|
2018-10-07 03:03:38 +02:00
|
|
|
|
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);
|
2022-03-20 02:59:48 +01:00
|
|
|
|
|
2018-10-06 14:16:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|