From 7eefb4e1901afcd62d875658452d6ba7b52a48d7 Mon Sep 17 00:00:00 2001 From: Ashraful Haque Date: Mon, 22 Feb 2021 07:24:26 +0000 Subject: [PATCH] updated games controller --- Controllers/GamesController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Controllers/GamesController.cs b/Controllers/GamesController.cs index 827eaf0..4c1362c 100644 --- a/Controllers/GamesController.cs +++ b/Controllers/GamesController.cs @@ -1,5 +1,4 @@ using System.Collections.Generic; -using System.Linq; using Microsoft.AspNetCore.Mvc; using TestApplication.Models; @@ -21,7 +20,7 @@ namespace TestApplication.Controllers } [HttpGet] - public IEnumerable GetGames_List() + public ActionResult> GetGames_List() { return GetGames(); }