bgc/BGC.Common/Catalog/ICatalogRepository.cs

13 lines
424 B
C#
Raw Normal View History

2024-08-05 03:22:49 +03:00
using BGC.Common.Catalog.Models;
namespace BGC.Common.Catalog
{
public interface ICatalogRepository
{
public Task<GetGamesByFilterResponse> GetGamesByFilter(GamesFilter filter);
public Task<GetFullGameRespone> GetGameFull(long ig);
public Task<DataForSelection> GetDataForSelection();
public Task<GetFullGameRespone> UpsertGame(GameUpsertingRequest gameFull);
}
}