11 lines
212 B
C#
11 lines
212 B
C#
using System.Collections.Generic;
|
|
using LaDOSE.Entity;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IGameService : IBaseService<Game>
|
|
{
|
|
public int? GetIdByName(string name);
|
|
|
|
}
|
|
} |